TimelapsePage.xaml 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <base:BasePage 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. xmlns:base="clr-namespace:Minolta_Remote"
  6. BackgroundColor="#121212">
  7. <ContentPage.Resources>
  8. <Style TargetType="Label">
  9. <Setter Property="TextColor" Value="White" />
  10. <Setter Property="FontSize" Value="16" />
  11. </Style>
  12. <Style TargetType="Entry">
  13. <Setter Property="TextColor" Value="White" />
  14. <Setter Property="BackgroundColor" Value="#1E1E1E" />
  15. <Setter Property="Margin" Value="0,4" />
  16. </Style>
  17. <Style TargetType="Button">
  18. <Setter Property="BackgroundColor" Value="#1E88E5" />
  19. <Setter Property="TextColor" Value="White" />
  20. <Setter Property="CornerRadius" Value="24" />
  21. <Setter Property="HeightRequest" Value="48" />
  22. <Setter Property="Margin" Value="0,8" />
  23. </Style>
  24. </ContentPage.Resources>
  25. <VerticalStackLayout Padding="24" Spacing="16">
  26. <Label
  27. Text="TimeLapse Mode"
  28. FontAttributes="Bold"
  29. FontSize="24"
  30. HorizontalOptions="Center"
  31. Margin="0,0,0,8" />
  32. <Frame
  33. Padding="16"
  34. CornerRadius="12"
  35. BackgroundColor="#1E1E1E"
  36. HasShadow="False">
  37. <VerticalStackLayout Spacing="12">
  38. <HorizontalStackLayout Spacing="10">
  39. <Label VerticalTextAlignment="Center">Shutter speed, ms</Label>
  40. <Entry x:Name="ShootTime" Keyboard="Numeric" HorizontalOptions="FillAndExpand"/>
  41. </HorizontalStackLayout>
  42. <HorizontalStackLayout Spacing="10">
  43. <Label VerticalTextAlignment="Center">Delay between shots, ms</Label>
  44. <Entry x:Name="Delay" Keyboard="Numeric" HorizontalOptions="FillAndExpand"/>
  45. </HorizontalStackLayout>
  46. <HorizontalStackLayout Spacing="10">
  47. <Label VerticalTextAlignment="Center">Number of photos</Label>
  48. <Entry x:Name="PhotoCount" Keyboard="Numeric" HorizontalOptions="FillAndExpand"/>
  49. </HorizontalStackLayout>
  50. </VerticalStackLayout>
  51. </Frame>
  52. <Button Text="Start timelapse" x:Name="ShootButon" Clicked="ShootButon_Clicked"/>
  53. </VerticalStackLayout>
  54. </base:BasePage>