82 lines
3.2 KiB
XML
82 lines
3.2 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.Views.UserDetailView"
|
|
xmlns:partial="clr-namespace:AdventureWorks.MAUI.ViewsPartial"
|
|
Title="User Information">
|
|
|
|
<Border Style="{StaticResource Border.Page}">
|
|
<ScrollView>
|
|
<Grid RowDefinitions="Auto, Auto, Auto, Auto,Auto, Auto, Auto , Auto"
|
|
ColumnDefinitions="Auto, *"
|
|
Style="{StaticResource Grid.Page}">
|
|
|
|
|
|
<partial:HeaderView Grid.Row="0"
|
|
Grid.ColumnSpan="2"
|
|
ViewTitle="User Information"
|
|
ViewDescription="Use this Screen to Modify User Information." />
|
|
|
|
<Label Grid.Row="1"
|
|
Text="Login ID" />
|
|
|
|
<VerticalStackLayout Grid.Row="3"
|
|
Grid.Column="1">
|
|
<Entry Text=""
|
|
Placeholder="Please use a combination of letters and numbers."/>
|
|
<Label FontSize="Micro"
|
|
Text="Please use a combination of letters and numbers." />
|
|
</VerticalStackLayout>
|
|
<Label Grid.Row="2"
|
|
Text="First Name" />
|
|
<Entry Grid.Row="2"
|
|
Grid.Column="1"
|
|
Text=""/>
|
|
<Label Grid.Row="3"
|
|
Text="Last Name" />
|
|
<Entry Grid.Row="3"
|
|
Grid.Column="1"
|
|
Text=""/>
|
|
<Label Grid.Row="4"
|
|
Text="Email Address" />
|
|
<Entry Grid.Row="4"
|
|
Grid.Column="1"
|
|
Text=""/>
|
|
<Label Grid.Row="5" Text="Is Enrolled ?"/>
|
|
|
|
<FlexLayout Grid.Row="5"
|
|
Grid.Column="1"
|
|
Wrap="Wrap"
|
|
Direction="Row">
|
|
<HorizontalStackLayout>
|
|
<Label Text="401k?"/>
|
|
<CheckBox IsChecked="True"/>
|
|
</HorizontalStackLayout>
|
|
<HorizontalStackLayout >
|
|
<Label Text="Flex Time?"/>
|
|
<CheckBox IsChecked="False"/>
|
|
</HorizontalStackLayout>
|
|
<HorizontalStackLayout >
|
|
<Label Text="Health Care?"/>
|
|
<CheckBox IsChecked="True"/>
|
|
</HorizontalStackLayout>
|
|
<HorizontalStackLayout >
|
|
<Label Text="Health Savings Account?"/>
|
|
<CheckBox IsChecked="True"/>
|
|
</HorizontalStackLayout>
|
|
</FlexLayout>
|
|
|
|
<partial:AddressView Grid.Row="6"
|
|
Grid.ColumnSpan="2" />
|
|
|
|
<HorizontalStackLayout Grid.Row="7"
|
|
Grid.Column="1"
|
|
Spacing="5">
|
|
<Button Text="Save" />
|
|
<Button Text="Cancel" />
|
|
</HorizontalStackLayout>
|
|
</Grid>
|
|
</ScrollView>
|
|
</Border>
|
|
|
|
</ContentPage> |