MyMobileApp/SecondPage.xaml

18 lines
705 B
Plaintext
Raw Normal View History

2025-03-13 11:30:05 +03:00
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="MyMobileApp.SecondPage">
<ContentPage.Content>
<StackLayout>
<Button Text="Выйти"
VerticalOptions="Center"
HorizontalOptions="Center"
FontSize="18"
TextTransform="None"
CornerRadius="15"
WidthRequest="350"
BackgroundColor="#48B2E7"
Clicked="Button_Clicked" />
</StackLayout>
</ContentPage.Content>
</ContentPage>