Borders, Frames scrollers

This commit is contained in:
2025-08-18 08:05:28 +02:00
parent ba8acd09e4
commit ebbea4c1d4
8 changed files with 170 additions and 98 deletions

View File

@ -4,32 +4,32 @@
xmlns:partial="clr-namespace:AdventureWorks.MAUI.ViewsPartial"
x:Class="AdventureWorks.MAUI.Views.LoginView"
Title="Login">
<Grid RowDefinitions="Auto, Auto, Auto, Auto"
<Border Style="{StaticResource Border.Page}">
<Grid RowDefinitions="Auto, Auto, Auto, Auto"
ColumnDefinitions="Auto, *"
Style="{StaticResource Grid.Page}">
<partial:HeaderView Grid.Row="0"
<partial:HeaderView Grid.Row="0"
Grid.ColumnSpan="2"
ViewTitle="Login"
ViewDescription="Please enter your credentials to login." />
<Label Grid.Row="1"
<Label Grid.Row="1"
Text="Login ID" />
<Entry Grid.Row="1"
<Entry Grid.Row="1"
Grid.Column="1"
Placeholder="Enter your username" />
<Label Grid.Row="2"
<Label Grid.Row="2"
Text="Password" />
<Entry Grid.Row="2"
<Entry Grid.Row="2"
Grid.Column="1"
Placeholder="Enter your password"
IsPassword="True" />
<Button Grid.Row="3"
<Button Grid.Row="3"
Grid.ColumnSpan="2"
Text="Login"
HorizontalOptions="Center" />
</Grid>
</Grid>
</Border>
</ContentPage>