|
@@ -1,45 +1,48 @@
|
|
|
-<Window x:Class="Muzzle.Update"
|
|
|
+<Window x:Class="Muzzle.Add"
|
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
|
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"
|
|
|
xmlns:local="clr-namespace:Muzzle"
|
|
|
mc:Ignorable="d"
|
|
|
- Title="Добавление продукции" Height="450" Width="800">
|
|
|
+ Title="Add" Height="450" Width="800">
|
|
|
<Grid>
|
|
|
- <StackPanel Orientation="Vertical">
|
|
|
+ <StackPanel Orientation = "Vertical" >
|
|
|
<StackPanel Orientation="Horizontal">
|
|
|
- <Label Content="Артикул"></Label>
|
|
|
+ <Label Content = "Артикул" ></Label>
|
|
|
<TextBox Width="100" Height="15"></TextBox>
|
|
|
</StackPanel>
|
|
|
- <StackPanel Orientation="Horizontal">
|
|
|
+ <StackPanel Orientation = "Horizontal" >
|
|
|
<Label Content="Наименование"></Label>
|
|
|
- <TextBox Width="100" Height="15"></TextBox>
|
|
|
+ <TextBox Width = "100" Height="15"></TextBox>
|
|
|
</StackPanel>
|
|
|
- <StackPanel Orientation="Horizontal">
|
|
|
+ <StackPanel Orientation = "Horizontal" >
|
|
|
<Label Content="Тип продукта"></Label>
|
|
|
- <ComboBox Width="150" Height="15"></ComboBox>
|
|
|
+ <ComboBox Width = "150" Height="15"></ComboBox>
|
|
|
</StackPanel>
|
|
|
- <StackPanel Orientation="Horizontal">
|
|
|
+ <StackPanel Orientation = "Horizontal" >
|
|
|
<Label Content="Изображение"></Label>
|
|
|
<Button x:Name="btnImage" Content="Загрузить изображение" Width="150" Height="20"></Button>
|
|
|
</StackPanel>
|
|
|
- <StackPanel Orientation="Horizontal">
|
|
|
+ <StackPanel Orientation = "Horizontal" >
|
|
|
<Label Content="Количество человек для производства"></Label>
|
|
|
- <TextBox Width="100" Height="15"></TextBox>
|
|
|
+ <TextBox Width = "100" Height="15"></TextBox>
|
|
|
</StackPanel>
|
|
|
- <StackPanel Orientation="Horizontal">
|
|
|
+ <StackPanel Orientation = "Horizontal" >
|
|
|
<Label Content="Номер производственого цеха"></Label>
|
|
|
- <TextBox Width="100" Height="15"></TextBox>
|
|
|
+ <TextBox Width = "100" Height="15"></TextBox>
|
|
|
</StackPanel>
|
|
|
- <StackPanel Orientation="Horizontal">
|
|
|
+ <StackPanel Orientation = "Horizontal" >
|
|
|
<Label Content="Минимальная стоимость для агента"></Label>
|
|
|
- <TextBox Width="100" Height="15"></TextBox>
|
|
|
+ <TextBox Width = "100" Height="15"></TextBox>
|
|
|
</StackPanel>
|
|
|
- <StackPanel Orientation="Horizontal">
|
|
|
+ <StackPanel Orientation = "Horizontal" >
|
|
|
<Label Content="Описание"></Label>
|
|
|
- <TextBox Width="300" Height="100"></TextBox>
|
|
|
+ <TextBox Width = "300" Height="100"></TextBox>
|
|
|
+ </StackPanel>
|
|
|
+ <StackPanel>
|
|
|
+ <Button x:Name="btnNaz" Content="Назад" Width="100" Height="20" HorizontalAlignment="Left" Margin="10" Click="btnNaz_Click"></Button>
|
|
|
</StackPanel>
|
|
|
</StackPanel>
|
|
|
</Grid>
|
|
|
-</Window>
|
|
|
+</Window>
|