TimelapsePage.xaml 1.2 KB

1234567891011121314151617181920212223
  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
  4. x:Class="Minolta_Remote.TimelapsePage"
  5. Title="TimelapsePage">
  6. <VerticalStackLayout Margin="30">
  7. <HorizontalStackLayout Margin="15" Spacing="10">
  8. <Label VerticalTextAlignment="Center">Выдержка милисекунд</Label>
  9. <Entry x:Name="ShootTime" Keyboard="Numeric"/>
  10. </HorizontalStackLayout>
  11. <HorizontalStackLayout Margin="15" Spacing="10">
  12. <Label VerticalTextAlignment="Center">Задержка между кадрами</Label>
  13. <Entry x:Name="Delay" Keyboard="Numeric"/>
  14. </HorizontalStackLayout>
  15. <HorizontalStackLayout Margin="15" Spacing="10">
  16. <Label VerticalTextAlignment="Center">Количество фото</Label>
  17. <Entry x:Name="PhotoCount" Keyboard="Numeric"/>
  18. </HorizontalStackLayout>
  19. <HorizontalStackLayout Margin="15" Spacing="10">
  20. <Button Text="Take Photo" x:Name="ShootButon" Clicked="ShootButon_Clicked"/>
  21. </HorizontalStackLayout>
  22. </VerticalStackLayout>
  23. </ContentPage>