AppForKidsDesktop/AppForKids/Score.axaml
2024-12-26 10:39:55 +03:00

26 lines
1.3 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:CompileBindings="False"
x:Class="AppForKids.Score"
Title="Score">
<DockPanel>
<ListBox x:Name="ScoreListBox" Scroll="">
<ListBox.ItemTemplate>
<DataTemplate>
<Border
BorderThickness="3"
BorderBrush="Black">
<StackPanel Spacing="5" Orientation="Horizontal">
<TextBlock Text="{Binding Name}"/>
<TextBlock Text="{Binding Clicks}"/>
</StackPanel>
</Border>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
</DockPanel>
</Window>