|
@@ -0,0 +1,72 @@
|
|
|
+<Window x:Class="kursach_2._0.Windows.product_insert"
|
|
|
+ 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:kursach_2._0.Windows"
|
|
|
+ mc:Ignorable="d"
|
|
|
+ Title="Дилерская компания" Height="450" Width="450" MinHeight="450" MinWidth="450">
|
|
|
+ <Grid>
|
|
|
+ <Grid.ColumnDefinitions>
|
|
|
+ <ColumnDefinition/>
|
|
|
+ <ColumnDefinition Width="2*"/>
|
|
|
+ </Grid.ColumnDefinitions>
|
|
|
+
|
|
|
+ <Grid.RowDefinitions>
|
|
|
+ <RowDefinition/>
|
|
|
+ <RowDefinition/>
|
|
|
+ <RowDefinition/>
|
|
|
+ <RowDefinition/>
|
|
|
+ <RowDefinition/>
|
|
|
+ <RowDefinition/>
|
|
|
+ <RowDefinition/>
|
|
|
+ <RowDefinition/>
|
|
|
+ </Grid.RowDefinitions>
|
|
|
+
|
|
|
+ <Label Grid.Column="0" Grid.Row="0"
|
|
|
+ Content="Номер дистрибьютора"
|
|
|
+ FontFamily="Montserrat Light" FontSize="11"
|
|
|
+ HorizontalAlignment="Right" VerticalAlignment="Center"/>
|
|
|
+ <Label Grid.Column="0" Grid.Row="1"
|
|
|
+ Content="Наименование товара"
|
|
|
+ FontFamily="Montserrat Light" FontSize="11"
|
|
|
+ HorizontalAlignment="Right" VerticalAlignment="Center"/>
|
|
|
+ <Label Grid.Column="0" Grid.Row="2"
|
|
|
+ Content="Тип товара"
|
|
|
+ FontFamily="Montserrat Light" FontSize="11"
|
|
|
+ HorizontalAlignment="Right" VerticalAlignment="Center"/>
|
|
|
+ <Label Grid.Column="0" Grid.Row="3"
|
|
|
+ Content="Дата производства"
|
|
|
+ FontFamily="Montserrat Light" FontSize="11"
|
|
|
+ HorizontalAlignment="Right" VerticalAlignment="Center"/>
|
|
|
+ <Label Grid.Column="0" Grid.Row="4"
|
|
|
+ Content="Гарантия"
|
|
|
+ FontFamily="Montserrat Light" FontSize="11"
|
|
|
+ HorizontalAlignment="Right" VerticalAlignment="Center"/>
|
|
|
+ <Label Grid.Column="0" Grid.Row="5"
|
|
|
+ Content="Оптовая цена"
|
|
|
+ FontFamily="Montserrat Light" FontSize="11"
|
|
|
+ HorizontalAlignment="Right" VerticalAlignment="Center"/>
|
|
|
+ <Label Grid.Column="0" Grid.Row="6"
|
|
|
+ Content="Розничная цена"
|
|
|
+ FontFamily="Montserrat Light" FontSize="11"
|
|
|
+ HorizontalAlignment="Right" VerticalAlignment="Center"/>
|
|
|
+
|
|
|
+ <TextBox x:Name="TB_id_distributor" Grid.Column="1" Grid.Row="0" Margin="15"
|
|
|
+ VerticalContentAlignment="Center" HorizontalContentAlignment="Right" FontFamily="Montserrat Light"/>
|
|
|
+ <TextBox x:Name="TB_product_name" Grid.Column="1" Grid.Row="1" Margin="15"
|
|
|
+ VerticalContentAlignment="Center" HorizontalContentAlignment="Right" FontFamily="Montserrat Light"/>
|
|
|
+ <TextBox x:Name="TB_product_type" Grid.Column="1" Grid.Row="2" Margin="15"
|
|
|
+ VerticalContentAlignment="Center" HorizontalContentAlignment="Right" FontFamily="Montserrat Light"/>
|
|
|
+ <DatePicker x:Name="DP_production_date" Grid.Column="1" Grid.Row="3" Margin="15"/>
|
|
|
+ <TextBox x:Name="TB_warranty" Grid.Column="1" Grid.Row="4" Margin="15"
|
|
|
+ VerticalContentAlignment="Center" HorizontalContentAlignment="Right" FontFamily="Montserrat Light"/>
|
|
|
+ <TextBox x:Name="TB_wholesale_price" Grid.Column="1" Grid.Row="5" Margin="15"
|
|
|
+ VerticalContentAlignment="Center" HorizontalContentAlignment="Right" FontFamily="Montserrat Light"/>
|
|
|
+ <TextBox x:Name="TB_retail_price" Grid.Column="1" Grid.Row="6" Margin="15"
|
|
|
+ VerticalContentAlignment="Center" HorizontalContentAlignment="Right" FontFamily="Montserrat Light"/>
|
|
|
+
|
|
|
+ <Button x:Name="ButtonOK" Grid.ColumnSpan="2" Grid.Row="7" Margin="150, 10"
|
|
|
+ Content="Ок" FontFamily="Montserrat Medium" Click="ButtonOK_Click"/>
|
|
|
+ </Grid>
|
|
|
+</Window>
|