demo2025_products_tiron_baby/MainWindow.axaml

20 lines
1.2 KiB
Plaintext
Raw Permalink Normal View History

2025-03-25 08:03:33 +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.MainWindow"
2025-03-25 12:37:37 +00:00
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>
2025-03-25 08:03:33 +00:00
</Window>