| 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.MainPage"
- xmlns:base="clr-namespace:Minolta_Remote"
- BackgroundColor="#121212">
- <ContentPage.Resources>
- <Style TargetType="Label">
- <Setter Property="TextColor" Value="White" />
- <Setter Property="FontSize" Value="18" />
- </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="WidthRequest" Value="220" />
- <Setter Property="Margin" Value="0,8" />
- </Style>
- </ContentPage.Resources>
- <Grid Padding="24">
- <Grid.RowDefinitions>
- <RowDefinition Height="Auto" />
- <RowDefinition Height="*" />
- <RowDefinition Height="Auto" />
- <RowDefinition Height="Auto" />
- </Grid.RowDefinitions>
- <Label
- Grid.Row="0"
- Text="Auto Mode"
- FontAttributes="Bold"
- FontSize="24"
- HorizontalOptions="Center"
- Margin="0,0,0,16" />
- <VerticalStackLayout
- Grid.Row="1"
- Spacing="12"
- VerticalOptions="CenterAndExpand"
- HorizontalOptions="Center">
- <Button
- x:Name="Prefocus"
- Text="Prefocus"
- Clicked="Focus_Button_Clicked" />
- <Button
- x:Name="TakePhoto"
- Text="Take Photo"
- Clicked="TakePhoto_Button_Clicked" />
- <Button
- x:Name="ResetButon"
- Text="Reset camera focus"
- Clicked="ResetButon_Clicked" />
- </VerticalStackLayout>
- </Grid>
- </base:BasePage>
|