MainPage.xaml 2.0 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.MainPage"
  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="18" />
  11. </Style>
  12. <Style TargetType="Button">
  13. <Setter Property="BackgroundColor" Value="#1E88E5" />
  14. <Setter Property="TextColor" Value="White" />
  15. <Setter Property="CornerRadius" Value="24" />
  16. <Setter Property="HeightRequest" Value="48" />
  17. <Setter Property="WidthRequest" Value="220" />
  18. <Setter Property="Margin" Value="0,8" />
  19. </Style>
  20. </ContentPage.Resources>
  21. <Grid Padding="24">
  22. <Grid.RowDefinitions>
  23. <RowDefinition Height="Auto" />
  24. <RowDefinition Height="*" />
  25. <RowDefinition Height="Auto" />
  26. <RowDefinition Height="Auto" />
  27. </Grid.RowDefinitions>
  28. <Label
  29. Grid.Row="0"
  30. Text="Auto Mode"
  31. FontAttributes="Bold"
  32. FontSize="24"
  33. HorizontalOptions="Center"
  34. Margin="0,0,0,16" />
  35. <VerticalStackLayout
  36. Grid.Row="1"
  37. Spacing="12"
  38. VerticalOptions="CenterAndExpand"
  39. HorizontalOptions="Center">
  40. <Button
  41. x:Name="Prefocus"
  42. Text="Prefocus"
  43. Clicked="Focus_Button_Clicked" />
  44. <Button
  45. x:Name="TakePhoto"
  46. Text="Take Photo"
  47. Clicked="TakePhoto_Button_Clicked" />
  48. <Button
  49. x:Name="ResetButon"
  50. Text="Reset camera focus"
  51. Clicked="ResetButon_Clicked" />
  52. </VerticalStackLayout>
  53. </Grid>
  54. </base:BasePage>