50 lines
2.0 KiB
XML
50 lines
2.0 KiB
XML
<Window xmlns="https://github.com/avaloniaui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
|
|
x:Class="AvaloniaAppApplication.ClientAppointmentsWindow"
|
|
Title="ClientAppointmentsWindow">
|
|
<Grid RowDefinitions="*, 10*, *" ColumnDefinitions="*, 10*, *">
|
|
<ListBox Name="ClientAppointmentLB" Grid.Column="1" Grid.Row="1">
|
|
<ListBox.ItemTemplate>
|
|
<DataTemplate>
|
|
<ListBoxItem>
|
|
<Grid RowDefinitions="*, *, *, *, *, *">
|
|
<StackPanel Grid.Row="0" Orientation="Horizontal">
|
|
<TextBlock Text="Наименование услуги: " FontWeight="Bold"/>
|
|
<TextBlock Text="{Binding Title}"/>
|
|
</StackPanel>
|
|
|
|
<StackPanel Grid.Row="1" Orientation="Horizontal">
|
|
<TextBlock Text="ФИО клиента: " FontWeight="Bold"/>
|
|
<TextBlock Text="{Binding ClientFIO}"/>
|
|
</StackPanel>
|
|
|
|
<StackPanel Grid.Row="2" Orientation="Horizontal">
|
|
<TextBlock Text="Эл. почта: " FontWeight="Bold"/>
|
|
<TextBlock Text="{Binding Email}"/>
|
|
</StackPanel>
|
|
|
|
<StackPanel Grid.Row="3" Orientation="Horizontal">
|
|
<TextBlock Text="Телефон: " FontWeight="Bold"/>
|
|
<TextBlock Text="{Binding Phone}"/>
|
|
</StackPanel>
|
|
|
|
<StackPanel Grid.Row="4" Orientation="Horizontal">
|
|
<TextBlock Text="Дата и время записи: " FontWeight="Bold"/>
|
|
<TextBlock Text="{Binding StartTime}"/>
|
|
</StackPanel>
|
|
|
|
<StackPanel Background="{Binding ColorString}" Grid.Row="5" Orientation="Horizontal">
|
|
<TextBlock Text="До начала услуги осталось: " FontWeight="Bold"/>
|
|
<TextBlock Text="{Binding RemainingTime, StringFormat='{}{0} минут'}"/>
|
|
</StackPanel>
|
|
</Grid>
|
|
</ListBoxItem>
|
|
</DataTemplate>
|
|
</ListBox.ItemTemplate>
|
|
</ListBox>
|
|
</Grid>
|
|
</Window>
|