Mobail_App/NewPage1.xaml

20 lines
771 B
Plaintext
Raw Permalink Normal View History

<?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="MobailApp.NewPage1"
Title="NewPage1">
2025-03-05 09:35:22 +03:00
<VerticalStackLayout VerticalOptions="Center">
<Label
2025-03-05 09:35:22 +03:00
Margin="0,0,0,30"
Text="Новая страничка"
FontSize="30"
VerticalOptions="Center"
HorizontalOptions="Center" />
<Button
x:Name="CounterBtn"
Text="Click me"
SemanticProperties.Hint="Counts the number of times you click"
Clicked="OnCounterClicked"
HorizontalOptions="Fill" />
</VerticalStackLayout>
</ContentPage>