new_demo/NewOrderWindow.axaml
2025-02-26 15:54:51 +03:00

45 lines
1.8 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="demo_hard.NewOrderWindow"
x:CompileBindings="False"
Title="FunctionWindow">
<DockPanel>
<StackPanel Margin="10" Orientation="Vertical" VerticalAlignment="Center">
<TextBlock Text="Данные заказа" FontSize="24" HorizontalAlignment="Center" Margin="10" />
<TextBlock Text="Номер заказа" />
<TextBlock x:Name="OrderNumberText" />
<TextBlock Text="Код клиента" />
<TextBlock x:Name="ClientCode" />
<TextBlock Text="Время заказа" />
<TextBlock x:Name="TimeOrder" />
<TextBlock Text="ФИО клиента" />
<TextBlock x:Name="FIO" />
<TextBlock Text="Адрес клиента" />
<TextBlock x:Name="Address" />
<TextBlock Text="Услуги входящие в заказ:" />
<ListBox x:Name="ServicesList" Margin="10" Height="200">
<ListBox.ItemTemplate>
<DataTemplate>
<TextBlock Text="{Binding}"/>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
<TextBlock Text="Стоимость" />
<TextBlock x:Name="Cost" />
<Button Content="Назад" HorizontalAlignment="Center" Margin="10" Click="ButtonBack_OnClick" />
</StackPanel>
</DockPanel>
</Window>