20 lines
1.2 KiB
XML
20 lines
1.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="800" d:DesignHeight="450"
|
|
x:Class="tiron_demo.MainWindow"
|
|
WindowStartupLocation="CenterScreen"
|
|
Icon="avares://tiron_demo/Resources/icon.ico"
|
|
Title="Главная страница">
|
|
<Grid Margin="10" RowDefinitions="*, auto">
|
|
<TextBlock FontFamily="fonts:SystemFonts#Segoe UI" Text="Главная страница" HorizontalAlignment="Center" FontWeight="Bold" />
|
|
|
|
<Button FontFamily="fonts:SystemFonts#Segoe UI" Margin="10" Grid.Row="1" HorizontalAlignment="Right" Content="Продукты" Click="Button_Click_Products" />
|
|
|
|
<Button FontFamily="fonts:SystemFonts#Segoe UI" Margin="10" Grid.Row="1" HorizontalAlignment="Center" Content="История" Click="Button_Click_History" />
|
|
|
|
<Button FontFamily="fonts:SystemFonts#Segoe UI" Margin="10" Grid.Row="1" HorizontalAlignment="Left" Content="Партнёры" Click="Button_Click_Partners" />
|
|
</Grid>
|
|
</Window>
|