19 lines
983 B
XML
19 lines
983 B
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="1200"
|
|
x:Class="Demka_Snova_1.OknaFunciy.AddZakazWindow"
|
|
Title="Сохдание заказа"
|
|
Width="650"
|
|
Height="450">
|
|
<Grid VerticalAlignment="Top" HorizontalAlignment="Center">
|
|
<StackPanel Margin="10">
|
|
<TextBox x:Name="ClientTextBox" Watermark="Код клиента" />
|
|
<TextBox x:Name="UslugaTextBox" Watermark="Услуги" />
|
|
<TextBox x:Name="ProkatTextBox" Watermark="Время проката" />
|
|
<Button x:Name="FormatZakaz" Content="Создать" Margin="0,10" Click="FormatZakaz_Click" />
|
|
<Button x:Name="VihodZakaz" Content="Выход" Margin="" Click="Exitka" />
|
|
</StackPanel>
|
|
</Grid>
|
|
</Window> |