MainPage.xaml 1.3 KB

123456789101112131415161718192021222324252627282930313233343536
  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="practiceApplicaiton.MainPage">
  5. <ScrollView>
  6. <VerticalStackLayout
  7. Padding="30,0"
  8. Spacing="25">
  9. <Image
  10. Source="dotnet_bot.png"
  11. HeightRequest="185"
  12. Aspect="AspectFit"
  13. SemanticProperties.Description="dot net bot in a submarine number ten" />
  14. <Label
  15. Text="Hello, World!"
  16. Style="{StaticResource Headline}"
  17. SemanticProperties.HeadingLevel="Level1" />
  18. <Label
  19. Text="Welcome to &#10;.NET Multi-platform App UI"
  20. Style="{StaticResource SubHeadline}"
  21. SemanticProperties.HeadingLevel="Level2"
  22. SemanticProperties.Description="Welcome to dot net Multi platform App U I" />
  23. <Button
  24. x:Name="CounterBtn"
  25. Text="Click me"
  26. SemanticProperties.Hint="Counts the number of times you click"
  27. Clicked="OnCounterClicked"
  28. HorizontalOptions="Fill" />
  29. </VerticalStackLayout>
  30. </ScrollView>
  31. </ContentPage>