|
@@ -0,0 +1,49 @@
|
|
|
|
+<Window x:Class="Muzzle.Update"
|
|
|
|
+ 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">
|
|
|
|
+ <Grid>
|
|
|
|
+ <StackPanel Orientation = "Vertical" >
|
|
|
|
+ <StackPanel Orientation="Horizontal">
|
|
|
|
+ <Label Content = "Артикул" ></Label>
|
|
|
|
+ <TextBox Width="100" Height="15"></TextBox>
|
|
|
|
+ </StackPanel>
|
|
|
|
+ <StackPanel Orientation = "Horizontal" >
|
|
|
|
+ <Label Content="Наименование"></Label>
|
|
|
|
+ <TextBox Width = "100" Height="15"></TextBox>
|
|
|
|
+ </StackPanel>
|
|
|
|
+ <StackPanel Orientation = "Horizontal" >
|
|
|
|
+ <Label Content="Тип продукта"></Label>
|
|
|
|
+ <ComboBox Width = "150" Height="15"></ComboBox>
|
|
|
|
+ </StackPanel>
|
|
|
|
+ <StackPanel Orientation = "Horizontal" >
|
|
|
|
+ <Label Content="Изображение"></Label>
|
|
|
|
+ <Button x:Name="btnImage" Content="Загрузить изображение" Width="150" Height="20"></Button>
|
|
|
|
+ </StackPanel>
|
|
|
|
+ <StackPanel Orientation = "Horizontal" >
|
|
|
|
+ <Label Content="Количество человек для производства"></Label>
|
|
|
|
+ <TextBox Width = "100" Height="15"></TextBox>
|
|
|
|
+ </StackPanel>
|
|
|
|
+ <StackPanel Orientation = "Horizontal" >
|
|
|
|
+ <Label Content="Номер производственого цеха"></Label>
|
|
|
|
+ <TextBox Width = "100" Height="15"></TextBox>
|
|
|
|
+ </StackPanel>
|
|
|
|
+ <StackPanel Orientation = "Horizontal" >
|
|
|
|
+ <Label Content="Минимальная стоимость для агента"></Label>
|
|
|
|
+ <TextBox Width = "100" Height="15"></TextBox>
|
|
|
|
+ </StackPanel>
|
|
|
|
+ <StackPanel Orientation = "Horizontal" >
|
|
|
|
+ <Label Content="Описание"></Label>
|
|
|
|
+ <TextBox Width = "300" Height="100"></TextBox>
|
|
|
|
+ </StackPanel>
|
|
|
|
+ <StackPanel Orientation="Vertical">
|
|
|
|
+ <Button x:Name="btnDob" Content="Готово" Width="100" Height="20" HorizontalAlignment="Left" Margin="10,10,0,10"></Button>
|
|
|
|
+ <Button x:Name="btnNaz" Content="Назад" Width="100" Height="20" HorizontalAlignment="Left" Margin="10,0,0,0" Click="btnNaz_Click"></Button>
|
|
|
|
+ </StackPanel>
|
|
|
|
+ </StackPanel>
|
|
|
|
+ </Grid>
|
|
|
|
+</Window>
|