demo_hard/HistoryWindow.axaml
2025-02-12 14:54:49 +03:00

43 lines
2.2 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="1000" d:DesignHeight="1000"
x:Class="demo_hard.HistoryWindow"
x:CompileBindings="False"
Title="HistoryWindow">
<DockPanel>
<StackPanel DockPanel.Dock="Top" HorizontalAlignment="Center" Orientation="Horizontal" Margin="5">
<TextBlock HorizontalAlignment="Center" Text="Окно истории входа" Margin="5"/>
<ComboBox Width="200">
</ComboBox>
<ComboBox Width="200">
</ComboBox>
</StackPanel>
<StackPanel>
<ListBox x:Name="LastEnterBox">
<ListBox.ItemsPanel>
<ItemsPanelTemplate>
<UniformGrid Columns="1"/>
</ItemsPanelTemplate>
</ListBox.ItemsPanel>
<ListBox.ItemTemplate>
<DataTemplate>
<Border>
<StackPanel HorizontalAlignment="Center" Spacing="5">
<TextBlock Text="{Binding Login}"/>
<TextBlock Text="{Binding EnterDatetime}"/>
<TextBlock Text="{Binding EnterType}"/>
</StackPanel>
</Border>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
</StackPanel>
</DockPanel>
</Window>