Files
LaDOSE/LaDOSE.Src/LaDOSE.DesktopApp/UserControls/BookingUserControl.xaml

34 lines
1.4 KiB
Plaintext
Raw Normal View History

2019-03-09 14:03:25 +01:00
<UserControl x:Class="LaDOSE.DesktopApp.UserControls.BookingUserControl"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:LaDOSE.DesktopApp.UserControls"
mc:Ignorable="d"
d:DesignHeight="450" d:DesignWidth="800"
2019-03-13 00:22:31 +01:00
2019-03-09 14:03:25 +01:00
>
<UserControl.Resources>
</UserControl.Resources>
<Grid>
<ListView Grid.Row ="1" Margin="2" ItemsSource="{Binding Path=Reservation}" TextSearch.TextPath="Name">
2019-03-09 14:03:25 +01:00
<ListView.ItemTemplate>
<DataTemplate>
2019-03-13 00:22:31 +01:00
<StackPanel Orientation="Horizontal" x:Name="Panel" VerticalAlignment="Stretch" >
2019-03-13 01:27:47 +01:00
<TextBlock x:Name="Name" Text="{Binding Name}">
2019-03-13 00:22:31 +01:00
2019-03-13 01:27:47 +01:00
</TextBlock>
2019-03-09 14:03:25 +01:00
</StackPanel>
<DataTemplate.Triggers>
2019-03-13 00:22:31 +01:00
<DataTrigger Binding="{Binding Valid}" Value="True">
<Setter TargetName="Name" Property="Foreground" Value="Green" />
2019-03-09 14:03:25 +01:00
</DataTrigger>
</DataTemplate.Triggers>
</DataTemplate>
</ListView.ItemTemplate>
</ListView>
</Grid>
</UserControl>