MainPage.xaml 700 B

1234567891011121314
  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <ContentPage 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. <Grid>
  6. <Grid.RowDefinitions>
  7. <RowDefinition />
  8. <RowDefinition/>
  9. </Grid.RowDefinitions>
  10. <Button x:Name="Prefocus" Text="Prefocus" Grid.Row="0" HorizontalOptions="Center" VerticalOptions="Center" Clicked="Focus_Button_Clicked"/>
  11. <Button x:Name="TakePhoto" Text="TakePhoto" Grid.Row="1" HorizontalOptions="Center" VerticalOptions="Center" Clicked="TakePhoto_Button_Clicked"/>
  12. </Grid>
  13. </ContentPage>