- <?xml version="1.0" encoding="utf-8" ?>
- <ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
- xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
- x:Class="Minolta_Remote.MainPage">
-
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition />
- <RowDefinition/>
- </Grid.RowDefinitions>
- <Button x:Name="Prefocus" Text="Prefocus" Grid.Row="0" HorizontalOptions="Center" VerticalOptions="Center" Clicked="Focus_Button_Clicked"/>
- <Button x:Name="TakePhoto" Text="TakePhoto" Grid.Row="1" HorizontalOptions="Center" VerticalOptions="Center" Clicked="TakePhoto_Button_Clicked"/>
- </Grid>
- </ContentPage>
|