20 lines
1.0 KiB
Plaintext
20 lines
1.0 KiB
Plaintext
|
<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="AppForKids.MainWindow"
|
||
|
Title="AppForKids">
|
||
|
<StackPanel HorizontalAlignment="Center" VerticalAlignment="Center" Spacing="10">
|
||
|
<TextBlock/>
|
||
|
<Button x:Name="ImageButton" Click="ImageButton_OnClick">
|
||
|
<Image Width="200"
|
||
|
Height="200"
|
||
|
Source="avares://AppForKids/assets/dotnet-bot_branded.png"
|
||
|
/>
|
||
|
</Button>
|
||
|
<TextBlock x:Name="ClickCounts"/>
|
||
|
<Button Width="200" Content="Открыть счет" x:Name="OpenScoreButton" Click="OpenScoreButton_OnClick"/>
|
||
|
</StackPanel>
|
||
|
</Window>
|