Mobail_App/MainPage.xaml
2025-03-10 10:02:43 +03:00

84 lines
3.4 KiB
XML

<?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.MainPage"
MaximumHeightRequest="812"
HeightRequest="812"
MaximumWidthRequest="375"
WidthRequest="375">
<ScrollView>
<!--<VerticalStackLayout
Padding="30,0"
Spacing="25">
<Image
Source="dotnet_bot.png"
HeightRequest="185"
Aspect="AspectFit"
SemanticProperties.Description="dot net bot in a race car number eight" />
<Label
Text="Hello, World!"
Style="{StaticResource Headline}"
SemanticProperties.HeadingLevel="Level1" />
<Label
Text="Welcome to &#10;.NET Multi-platform App UI"
Style="{StaticResource SubHeadline}"
SemanticProperties.HeadingLevel="Level2"
SemanticProperties.Description="Welcome to dot net Multi platform App U I" />
<Button
x:Name="CounterBtn"
Text="Click me"
SemanticProperties.Hint="Counts the number of times you click"
Clicked="OnCounterClicked"
HorizontalOptions="Fill" />
<Button
x:Name="NewPageOpenbtn"
Text="New page"
SemanticProperties.Hint="Counts the number of times you click"
Clicked="NewPageOpenbtn_Clicked"
HorizontalOptions="Fill" />
</VerticalStackLayout>-->
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="416"/>
<RowDefinition Height="19"/>
</Grid.RowDefinitions>
<StackLayout>
<StackLayout Margin="20,75,20,0">
<Label Text="Привет!"/>
<Label Text="Заполните Свои Данные Или Продолжите Через Социальные Медиа"/>
</StackLayout>
<StackLayout Margin="20,30,20,0">
<StackLayout>
<StackLayout>
<Label Text="Email"/>
<HorizontalStackLayout>
<Frame CornerRadius="15" BackgroundColor="#f7f7f9">
<Entry/>
</Frame>
</HorizontalStackLayout>
</StackLayout>
<StackLayout>
<Label Text="Пароль"/>
<HorizontalStackLayout>
<Frame CornerRadius="15" BackgroundColor="#f7f7f9">
<Entry IsPassword="True"/>
</Frame>
</HorizontalStackLayout>
</StackLayout>
</StackLayout>
<Button Text="Войти" TextColor="White"/>
</StackLayout>
</StackLayout>
<HorizontalStackLayout>
<Label/>
<Button/>
</HorizontalStackLayout>
</Grid>
</ScrollView>
</ContentPage>