50 lines
1.5 KiB
XML
50 lines
1.5 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="AdventureWorks.MAUI.MainPage"
|
|
Title="Home">
|
|
|
|
<Grid RowDefinitions="Auto, Auto, Auto,Auto, Auto, Auto , Auto"
|
|
ColumnDefinitions="Auto, *"
|
|
ColumnSpacing="10"
|
|
RowSpacing="10"
|
|
Margin="10"
|
|
Padding="10">
|
|
<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."
|
|
FontSize="Body" />
|
|
|
|
<BoxView Grid.Row="2"
|
|
Grid.ColumnSpan="2"
|
|
Margin="0,0,0,20"
|
|
HeightRequest="1"
|
|
Color="Black" />
|
|
<Label Grid.Row="3"
|
|
Text="Login ID" />
|
|
<Entry Grid.Row="3"
|
|
Grid.Column="1"
|
|
Text=""/>
|
|
<Label Grid.Row="4"
|
|
Text="First Name" />
|
|
<Entry Grid.Row="4"
|
|
Grid.Column="1"
|
|
Text=""/>
|
|
<Label Grid.Row="5"
|
|
Text="Last Name" />
|
|
<Entry Grid.Row="5"
|
|
Grid.Column="1"
|
|
Text=""/>
|
|
<Label Grid.Row="6"
|
|
Text="Email Address" />
|
|
<Entry Grid.Row="6"
|
|
Grid.Column="1"
|
|
Text=""/>
|
|
</Grid>
|
|
|
|
</ContentPage>
|