ProTab.xaml 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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.ProTab"
  5. xmlns:base="clr-namespace:Minolta_Remote"
  6. Title="ProTab"
  7. BackgroundColor="#121212">
  8. <ContentPage.Resources>
  9. <Style TargetType="Label">
  10. <Setter Property="TextColor" Value="White" />
  11. <Setter Property="FontSize" Value="16" />
  12. </Style>
  13. <Style TargetType="Entry">
  14. <Setter Property="TextColor" Value="White" />
  15. <Setter Property="BackgroundColor" Value="#1E1E1E" />
  16. <Setter Property="Margin" Value="0,4" />
  17. </Style>
  18. <Style TargetType="Button">
  19. <Setter Property="BackgroundColor" Value="#1E88E5" />
  20. <Setter Property="TextColor" Value="White" />
  21. <Setter Property="CornerRadius" Value="24" />
  22. <Setter Property="HeightRequest" Value="48" />
  23. <Setter Property="Margin" Value="0,8" />
  24. </Style>
  25. </ContentPage.Resources>
  26. <VerticalStackLayout Padding="24" Spacing="16">
  27. <Label
  28. Text="Bulb Mode"
  29. FontAttributes="Bold"
  30. FontSize="24"
  31. HorizontalOptions="Center"
  32. Margin="0,0,0,8" />
  33. <Frame
  34. Padding="16"
  35. CornerRadius="12"
  36. BackgroundColor="#1E1E1E"
  37. HasShadow="False">
  38. <VerticalStackLayout Spacing="12">
  39. <HorizontalStackLayout Spacing="10">
  40. <Label VerticalTextAlignment="Center">Shutter speed, ms</Label>
  41. <Entry x:Name="ShootTime" Keyboard="Numeric" HorizontalOptions="FillAndExpand"/>
  42. </HorizontalStackLayout>
  43. <HorizontalStackLayout Spacing="10">
  44. <Label VerticalTextAlignment="Center">Self-timer, ms</Label>
  45. <Entry x:Name="SelfiTimer" Keyboard="Numeric" HorizontalOptions="FillAndExpand"/>
  46. </HorizontalStackLayout>
  47. <HorizontalStackLayout Spacing="10">
  48. <Label VerticalTextAlignment="Center">Prefocus</Label>
  49. <Switch x:Name="Prefocus" HorizontalOptions="EndAndExpand"/>
  50. </HorizontalStackLayout>
  51. </VerticalStackLayout>
  52. </Frame>
  53. <VerticalStackLayout Spacing="8">
  54. <Button Text="Take Photo" x:Name="ShootButon" Clicked="ShootButon_Clicked"/>
  55. <Button Text="Reset camera focus" x:Name="ResetButon" Clicked="ResetButon_Clicked"/>
  56. </VerticalStackLayout>
  57. </VerticalStackLayout>
  58. </base:BasePage>