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