repo2403/ProductWindow.axaml
2025-03-24 14:59:01 +03:00

55 lines
2.1 KiB
XML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<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>