Styling measures
This commit is contained in:
@ -2,18 +2,18 @@
|
||||
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
||||
x:Class="AdventureWorks.MAUI.MainPage"
|
||||
Title="Home">
|
||||
Title="{StaticResource ApplicationTitle}">
|
||||
|
||||
|
||||
<Grid RowDefinitions="Auto,Auto,Auto, Auto, Auto,Auto, Auto, Auto , Auto"
|
||||
ColumnDefinitions="Auto, *"
|
||||
ColumnSpacing="10"
|
||||
RowSpacing="10"
|
||||
Margin="10"
|
||||
Padding="10">
|
||||
Style="{StaticResource Grid.Page}">
|
||||
|
||||
<Label Grid.Row="0"
|
||||
Grid.ColumnSpan="2"
|
||||
Text="User Information"
|
||||
FontSize="Title" />
|
||||
|
||||
<Label Grid.Row="1"
|
||||
Grid.ColumnSpan="2"
|
||||
Text="Use this Screen to Modify User Information."
|
||||
@ -24,6 +24,8 @@
|
||||
Margin="0,0,0,20"
|
||||
HeightRequest="1"
|
||||
Color="Black" />
|
||||
|
||||
|
||||
<Label Grid.Row="3"
|
||||
Text="Login ID" />
|
||||
<VerticalStackLayout Grid.Row="3"
|
||||
@ -33,9 +35,6 @@
|
||||
<Label FontSize="Micro"
|
||||
Text="Please use a combination of letters and numbers." />
|
||||
</VerticalStackLayout>
|
||||
<Entry Grid.Row="3"
|
||||
Grid.Column="1"
|
||||
Text=""/>
|
||||
<Label Grid.Row="4"
|
||||
Text="First Name" />
|
||||
<Entry Grid.Row="4"
|
||||
@ -55,19 +54,19 @@
|
||||
Grid.Column="1"
|
||||
Wrap="Wrap"
|
||||
Direction="Row">
|
||||
<HorizontalStackLayout Spacing="5">
|
||||
<HorizontalStackLayout>
|
||||
<Label Text="401k?"/>
|
||||
<CheckBox IsChecked="True"/>
|
||||
</HorizontalStackLayout>
|
||||
<HorizontalStackLayout Spacing="5">
|
||||
<HorizontalStackLayout >
|
||||
<Label Text="Flex Time?"/>
|
||||
<CheckBox IsChecked="False"/>
|
||||
</HorizontalStackLayout>
|
||||
<HorizontalStackLayout Spacing="5">
|
||||
<HorizontalStackLayout >
|
||||
<Label Text="Health Care?"/>
|
||||
<CheckBox IsChecked="True"/>
|
||||
</HorizontalStackLayout>
|
||||
<HorizontalStackLayout Spacing="5">
|
||||
<HorizontalStackLayout >
|
||||
<Label Text="Health Savings Account?"/>
|
||||
<CheckBox IsChecked="True"/>
|
||||
</HorizontalStackLayout>
|
||||
|
||||
Reference in New Issue
Block a user