55 lines
2.1 KiB
XML
55 lines
2.1 KiB
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="450"
|
||
x:Class="demka2025_sedelnikov.ProductWindow"
|
||
Icon="/Res/Мастер пол.ico"
|
||
Title="ProductWindow">
|
||
<Grid RowDefinitions="*, 10*, *" ColumnDefinitions="*, 10*, *">
|
||
<ListBox Grid.Row="1" Grid.Column="1" x:Name="ProductsLB">
|
||
<ListBox.ItemTemplate>
|
||
<DataTemplate>
|
||
<ListBoxItem Background="#F4E8D3" Tag="{Binding Id}" DoubleTapped="Grid_DoubleTapped">
|
||
<Grid RowDefinitions="Auto, Auto">
|
||
<StackPanel Orientation="Horizontal" HorizontalAlignment="Right">
|
||
<TextBlock Text="Артикул продукта: " FontWeight="Bold"/>
|
||
<TextBlock Text="{Binding Articul}"/>
|
||
</StackPanel>
|
||
|
||
<StackPanel Orientation="Vertical" Grid.Row="1">
|
||
<StackPanel Orientation="Horizontal">
|
||
<TextBlock Text="Название продукта: " FontWeight="Bold"/>
|
||
<TextBlock Text="{Binding ProductName}"/>
|
||
</StackPanel>
|
||
|
||
<StackPanel Orientation="Horizontal">
|
||
<TextBlock Text="Тип продукта: " FontWeight="Bold"/>
|
||
<TextBlock Text="{Binding ProductTypeString}"/>
|
||
</StackPanel>
|
||
|
||
<StackPanel Orientation="Horizontal">
|
||
<TextBlock Text="Коэффициент продукта: " FontWeight="Bold"/>
|
||
<TextBlock Text="{Binding ProductCoeffString}"/>
|
||
</StackPanel>
|
||
|
||
<StackPanel Orientation="Horizontal">
|
||
<TextBlock Text="Есть у следующих партнёров: " FontWeight="Bold"/>
|
||
<ComboBox ItemsSource="{Binding Partners}" PlaceholderText="Открыть">
|
||
|
||
</ComboBox>
|
||
|
||
</StackPanel>
|
||
</StackPanel>
|
||
</Grid>
|
||
</ListBoxItem>
|
||
|
||
|
||
</DataTemplate>
|
||
</ListBox.ItemTemplate>
|
||
</ListBox>
|
||
|
||
<Button Background="#67BA80" Grid.Row="2" Grid.Column="1" Content="Добавить" Click="Button_Click"/>
|
||
</Grid>
|
||
</Window>
|