40 lines
1.4 KiB
XML
40 lines
1.4 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.PartnerProductHistoryWindow"
|
|
Icon="/Res/Мастер пол.ico"
|
|
Title="PartnerProductHistoryWindow">
|
|
<Grid RowDefinitions="*, 10*, *" ColumnDefinitions="*, 10*, *">
|
|
<ListBox Grid.Row="1" Grid.Column="1" x:Name="PartnerProductHistoryLB">
|
|
<ListBox.ItemTemplate>
|
|
<DataTemplate>
|
|
<StackPanel Orientation="Vertical">
|
|
<StackPanel Orientation="Horizontal">
|
|
<TextBlock Text="Арктикул продукта: "/>
|
|
<TextBlock Text="{Binding Articul}"/>
|
|
</StackPanel>
|
|
|
|
<StackPanel Orientation="Horizontal">
|
|
<TextBlock Text="Наименование продукта: "/>
|
|
<TextBlock Text="{Binding ProductName}"/>
|
|
</StackPanel>
|
|
|
|
<StackPanel Orientation="Horizontal">
|
|
<TextBlock Text="Кол-во: "/>
|
|
<TextBlock Text="{Binding Quantity}"/>
|
|
</StackPanel>
|
|
|
|
<StackPanel Orientation="Horizontal">
|
|
<TextBlock Text="Дата реализации: "/>
|
|
<TextBlock Text="{Binding SellDate}"/>
|
|
</StackPanel>
|
|
</StackPanel>
|
|
</DataTemplate>
|
|
</ListBox.ItemTemplate>
|
|
|
|
</ListBox>
|
|
</Grid>
|
|
</Window>
|