Borders, Frames scrollers
This commit is contained in:
@ -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>
|
||||
Reference in New Issue
Block a user