repo2403/MainWindow.axaml
2025-03-24 14:59:01 +03:00

19 lines
937 B
XML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<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"
Icon="/Res/Мастер пол.ico"
x:Class="demka2025_sedelnikov.MainWindow"
Title="demka2025_sedelnikov">
<Grid RowDefinitions="*, *" ColumnDefinitions="*, *">
<StackPanel Orientation="Vertical" HorizontalAlignment="Center" VerticalAlignment="Center" Grid.ColumnSpan="2" Grid.RowSpan="2">
<TextBlock Text="Выберите, с чем хотите работать"/>
<StackPanel Orientation="Horizontal">
<Button Click="Button_Click" Content="Продукты"/>
<Button Click="Button_Click_1" Content="Партнёры"/>
</StackPanel>
</StackPanel>
</Grid>
</Window>