49 lines
2.4 KiB
XML
49 lines
2.4 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"
|
|
xmlns:partial="clr-namespace:AdventureWorks.MAUI.ViewsPartial"
|
|
xmlns:vm="clr-namespace:AdventureWorks.MAUI.CommandClasses"
|
|
xmlns:model="clr-namespace:AdventureWorks.EntityLayer;assembly=AdventureWorks.EntityLayer"
|
|
x:Class="AdventureWorks.MAUI.Views.UserListView"
|
|
x:DataType="vm:UserViewModelCommands"
|
|
|
|
Title="User List">
|
|
|
|
<Border Style="{StaticResource Screen.Border}">
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="Auto" />
|
|
<RowDefinition Height="*" />
|
|
</Grid.RowDefinitions>
|
|
<partial:HeaderView ViewTitle="User List"
|
|
ViewDescription="Use this Screen to view and manage users." />
|
|
<ListView Grid.Row="1"
|
|
ItemsSource="{Binding UserList}">
|
|
<ListView.ItemTemplate>
|
|
<DataTemplate x:DataType="model:User">
|
|
<ViewCell>
|
|
<Border Margin="8"
|
|
Padding="12">
|
|
<VerticalStackLayout Spacing="4">
|
|
<HorizontalStackLayout>
|
|
<Label FontAttributes="Bold"
|
|
FontSize="Title"
|
|
Text="{Binding LastNameFirstName}" />
|
|
</HorizontalStackLayout>
|
|
<HorizontalStackLayout>
|
|
<Label Text="Email" />
|
|
<Label Text="{Binding Email}" />
|
|
</HorizontalStackLayout>
|
|
<HorizontalStackLayout>
|
|
<Button Text="Edit" />
|
|
<Button Text="Delete" />
|
|
</HorizontalStackLayout>
|
|
</VerticalStackLayout>
|
|
</Border>
|
|
</ViewCell>
|
|
</DataTemplate>
|
|
</ListView.ItemTemplate>
|
|
</ListView>
|
|
</Grid>
|
|
</Border>
|
|
</ContentPage> |