|
@@ -9,40 +9,47 @@
|
|
|
<Grid>
|
|
|
<StackPanel Orientation = "Vertical" >
|
|
|
<StackPanel Orientation="Horizontal">
|
|
|
- <Label Content = "Артикул" ></Label>
|
|
|
- <TextBox Width="100" Height="15"></TextBox>
|
|
|
+ <Label Content = "Артикул"/>
|
|
|
+ <TextBox x:Name="Art" Width="100" Height="15"/>
|
|
|
</StackPanel>
|
|
|
<StackPanel Orientation = "Horizontal" >
|
|
|
- <Label Content="Наименование"></Label>
|
|
|
- <TextBox Width = "100" Height="15"></TextBox>
|
|
|
+ <Label Content="Наименование"/>
|
|
|
+ <TextBox x:Name="Title" Width = "100" Height="15"/>
|
|
|
</StackPanel>
|
|
|
<StackPanel Orientation = "Horizontal" >
|
|
|
- <Label Content="Тип продукта"></Label>
|
|
|
- <ComboBox Width = "150" Height="15"></ComboBox>
|
|
|
+ <Label Content="Тип продукта"/>
|
|
|
+ <ComboBox Width = "150" Height="15" >
|
|
|
+ <ComboBox.Background>
|
|
|
+ <LinearGradientBrush EndPoint="0,1" StartPoint="0,0">
|
|
|
+ <GradientStop Color="#FFF0F0F0" Offset="0"/>
|
|
|
+ <GradientStop Color="White" Offset="1"/>
|
|
|
+ </LinearGradientBrush>
|
|
|
+ </ComboBox.Background>
|
|
|
+ </ComboBox>
|
|
|
</StackPanel>
|
|
|
<StackPanel Orientation = "Horizontal" >
|
|
|
- <Label Content="Изображение"></Label>
|
|
|
- <Button x:Name="btnImage" Content="Загрузить изображение" Width="150" Height="20"></Button>
|
|
|
+ <Label Content="Изображение"/>
|
|
|
+ <Button x:Name="btnImage" Content="Изменить изображение" Width="150" Height="20" Background="White" BorderBrush="#FFFDBD40"/>
|
|
|
</StackPanel>
|
|
|
<StackPanel Orientation = "Horizontal" >
|
|
|
- <Label Content="Количество человек для производства"></Label>
|
|
|
- <TextBox Width = "100" Height="15"></TextBox>
|
|
|
+ <Label Content="Количество человек для производства"/>
|
|
|
+ <TextBox Width = "100" Height="15"/>
|
|
|
</StackPanel>
|
|
|
<StackPanel Orientation = "Horizontal" >
|
|
|
- <Label Content="Номер производственого цеха"></Label>
|
|
|
- <TextBox Width = "100" Height="15"></TextBox>
|
|
|
+ <Label Content="Номер производственого цеха"/>
|
|
|
+ <TextBox Width = "100" Height="15"/>
|
|
|
</StackPanel>
|
|
|
<StackPanel Orientation = "Horizontal" >
|
|
|
- <Label Content="Минимальная стоимость для агента"></Label>
|
|
|
- <TextBox Width = "100" Height="15"></TextBox>
|
|
|
+ <Label Content="Минимальная стоимость для агента"/>
|
|
|
+ <TextBox Width = "100" Height="15"/>
|
|
|
</StackPanel>
|
|
|
<StackPanel Orientation = "Horizontal" >
|
|
|
- <Label Content="Описание"></Label>
|
|
|
- <TextBox Width = "300" Height="100"></TextBox>
|
|
|
+ <Label Content="Описание"/>
|
|
|
+ <TextBox Width = "300" Height="100"/>
|
|
|
</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>
|
|
|
+ <Button x:Name="btnDob" Content="Готово" Width="100" Height="20" HorizontalAlignment="Left" Margin="10,10,0,10" Background="White" BorderBrush="#FFFDBD40"/>
|
|
|
+ <Button x:Name="btnNaz" Content="Назад" Width="100" Height="20" HorizontalAlignment="Left" Margin="10,0,0,0" Click="btnNaz_Click" Background="White" BorderBrush="#FFFDBD40"/>
|
|
|
</StackPanel>
|
|
|
</StackPanel>
|
|
|
</Grid>
|