| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <?xml version="1.0" encoding="utf-8" ?>
- <base:BasePage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
- xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
- x:Class="Minolta_Remote.TimelapsePage"
- xmlns:base="clr-namespace:Minolta_Remote"
- BackgroundColor="#121212">
- <ContentPage.Resources>
- <Style TargetType="Label">
- <Setter Property="TextColor" Value="White" />
- <Setter Property="FontSize" Value="16" />
- </Style>
- <Style TargetType="Entry">
- <Setter Property="TextColor" Value="White" />
- <Setter Property="BackgroundColor" Value="#1E1E1E" />
- <Setter Property="Margin" Value="0,4" />
- </Style>
- <Style TargetType="Button">
- <Setter Property="BackgroundColor" Value="#1E88E5" />
- <Setter Property="TextColor" Value="White" />
- <Setter Property="CornerRadius" Value="24" />
- <Setter Property="HeightRequest" Value="48" />
- <Setter Property="Margin" Value="0,8" />
- </Style>
- </ContentPage.Resources>
- <VerticalStackLayout Padding="24" Spacing="16">
- <Label
- Text="TimeLapse Mode"
- FontAttributes="Bold"
- FontSize="24"
- HorizontalOptions="Center"
- Margin="0,0,0,8" />
- <Frame
- Padding="16"
- CornerRadius="12"
- BackgroundColor="#1E1E1E"
- HasShadow="False">
- <VerticalStackLayout Spacing="12">
- <HorizontalStackLayout Spacing="10">
- <Label VerticalTextAlignment="Center">Shutter speed, ms</Label>
- <Entry x:Name="ShootTime" Keyboard="Numeric" HorizontalOptions="FillAndExpand"/>
- </HorizontalStackLayout>
- <HorizontalStackLayout Spacing="10">
- <Label VerticalTextAlignment="Center">Delay between shots, ms</Label>
- <Entry x:Name="Delay" Keyboard="Numeric" HorizontalOptions="FillAndExpand"/>
- </HorizontalStackLayout>
- <HorizontalStackLayout Spacing="10">
- <Label VerticalTextAlignment="Center">Number of photos</Label>
- <Entry x:Name="PhotoCount" Keyboard="Numeric" HorizontalOptions="FillAndExpand"/>
- </HorizontalStackLayout>
- </VerticalStackLayout>
- </Frame>
- <Button Text="Start timelapse" x:Name="ShootButon" Clicked="ShootButon_Clicked"/>
- </VerticalStackLayout>
- </base:BasePage>
|