| 1234567891011121314151617181920212223 |
- <?xml version="1.0" encoding="utf-8" ?>
- <ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
- xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
- x:Class="Minolta_Remote.TimelapsePage"
- Title="TimelapsePage">
- <VerticalStackLayout Margin="30">
- <HorizontalStackLayout Margin="15" Spacing="10">
- <Label VerticalTextAlignment="Center">Выдержка милисекунд</Label>
- <Entry x:Name="ShootTime" Keyboard="Numeric"/>
- </HorizontalStackLayout>
- <HorizontalStackLayout Margin="15" Spacing="10">
- <Label VerticalTextAlignment="Center">Задержка между кадрами</Label>
- <Entry x:Name="Delay" Keyboard="Numeric"/>
- </HorizontalStackLayout>
- <HorizontalStackLayout Margin="15" Spacing="10">
- <Label VerticalTextAlignment="Center">Количество фото</Label>
- <Entry x:Name="PhotoCount" Keyboard="Numeric"/>
- </HorizontalStackLayout>
- <HorizontalStackLayout Margin="15" Spacing="10">
- <Button Text="Take Photo" x:Name="ShootButon" Clicked="ShootButon_Clicked"/>
- </HorizontalStackLayout>
- </VerticalStackLayout>
- </ContentPage>
|