2025-02-11 10:23:14 +00:00
|
|
|
<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"
|
2025-03-05 09:12:58 +00:00
|
|
|
xmlns:local="clr-namespace:Demka_Snova_1.Hardik.Conect.Dao"
|
2025-04-25 07:00:58 +00:00
|
|
|
mc:Ignorable="d" d:DesignWidth="1200" d:DesignHeight="800"
|
2025-02-11 10:23:14 +00:00
|
|
|
x:Class="Demka_Snova_1.OknaRoley.StarshiyWindow"
|
|
|
|
Title="StarshiyWindow">
|
|
|
|
<Grid VerticalAlignment="Top" HorizontalAlignment="Center">
|
2025-03-05 09:12:58 +00:00
|
|
|
<StackPanel>
|
|
|
|
<Button Content="Сформировать заказ" Click="FormatZakaz_Click"/>
|
|
|
|
<Button Content="Принять товар" Click="PrinatZakaz_Click"/>
|
2025-04-25 07:00:58 +00:00
|
|
|
<Button Content="Выход" Click="Exitka"/>
|
2025-03-05 09:12:58 +00:00
|
|
|
|
2025-04-25 07:00:58 +00:00
|
|
|
<ListBox x:Name="OrdersListBox"
|
|
|
|
Width="300" Height="600"
|
|
|
|
Margin="0,10"
|
|
|
|
ScrollViewer.VerticalScrollBarVisibility="Auto">
|
2025-03-05 09:12:58 +00:00
|
|
|
<ListBox.ItemTemplate>
|
2025-04-25 07:00:58 +00:00
|
|
|
<DataTemplate DataType="{x:Type local:ordersDao}">
|
|
|
|
<StackPanel Margin="0,5">
|
2025-03-05 09:12:58 +00:00
|
|
|
<TextBlock Text="{Binding CodeZakaz}" FontWeight="Bold"/>
|
|
|
|
<TextBlock Text="{Binding Status}"/>
|
|
|
|
<TextBlock Text="{Binding Usluga}"/>
|
|
|
|
<TextBlock Text="{Binding Prokat, StringFormat='Прокат: {0:C}'}"/>
|
2025-04-25 07:00:58 +00:00
|
|
|
<TextBlock Text="{Binding klient.Fio, StringFormat='Клиент: {0}'}"/>
|
2025-03-05 09:12:58 +00:00
|
|
|
</StackPanel>
|
|
|
|
</DataTemplate>
|
|
|
|
</ListBox.ItemTemplate>
|
|
|
|
</ListBox>
|
|
|
|
</StackPanel>
|
|
|
|
</Grid>
|
|
|
|
</Window>
|