You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

45 lines
1.5 KiB

  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="CircleViewerMaui.MainPage">
  5. <ScrollView>
  6. <ScrollView.GestureRecognizers>
  7. <DragGestureRecognizer />
  8. <DropGestureRecognizer />
  9. </ScrollView.GestureRecognizers>
  10. <VerticalStackLayout
  11. Spacing="25"
  12. Padding="30,0"
  13. VerticalOptions="Center">
  14. <Image
  15. Source="dotnet_bot.png"
  16. SemanticProperties.Description="Cute dot net bot waving hi to you!"
  17. HeightRequest="200"
  18. HorizontalOptions="Center" />
  19. <Label
  20. Text="Hello, World!"
  21. SemanticProperties.HeadingLevel="Level1"
  22. FontSize="32"
  23. HorizontalOptions="Center" />
  24. <Label
  25. Text="Welcome to .NET Multi-platform App UI"
  26. SemanticProperties.HeadingLevel="Level2"
  27. SemanticProperties.Description="Welcome to dot net Multi platform App U I"
  28. FontSize="18"
  29. HorizontalOptions="Center" />
  30. <Button
  31. x:Name="CounterBtn"
  32. Text="Click me"
  33. SemanticProperties.Hint="Counts the number of times you click"
  34. Clicked="OnCounterClicked"
  35. HorizontalOptions="Center" />
  36. </VerticalStackLayout>
  37. </ScrollView>
  38. </ContentPage>