demo2025_products_tiron_baby/History.axaml

38 lines
1.7 KiB
Plaintext
Raw Permalink Normal View History

2025-03-25 12:37:37 +00:00
<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="tiron_demo.History"
WindowStartupLocation="CenterScreen"
Icon="avares://tiron_demo/Resources/icon.ico"
Title="История реалицазии продукции">
<Grid Margin="10" RowDefinitions="*, auto">
<ListBox Grid.Row="0" Name="HistoryBox" Margin="10">
<ListBox.Styles>
<Style Selector="ListBoxItem:pointerover /template/ ContentPresenter">
<Setter Property="Background" Value="#F4E8D3"/>
</Style>
<Style Selector="ListBoxItem:selected /template/ ContentPresenter">
<Setter Property="Background" Value="#67BA80"/>
</Style>
</ListBox.Styles>
<ListBox.ItemTemplate>
<DataTemplate>
<Border Padding="10" BorderBrush="Black" BorderThickness="1">
<StackPanel>
<TextBlock FontFamily="fonts:SystemFonts#Segoe UI" Text="{Binding PartnerNavigation.Name}" HorizontalAlignment="Right" />
<TextBlock FontFamily="fonts:SystemFonts#Segoe UI" Text="{Binding ProductNavigation.Name}" />
<TextBlock FontFamily="fonts:SystemFonts#Segoe UI" Text="{Binding Amount}" />
<TextBlock FontFamily="fonts:SystemFonts#Segoe UI" Text="{Binding SellDate}" />
</StackPanel>
</Border>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
<Button FontFamily="fonts:SystemFonts#Segoe UI" Margin="10" Grid.Row="1" HorizontalAlignment="Left" Content="Назад" Click="Button_Click_Back" />
</Grid>
</Window>