mirror of
https://github.com/vknet/vk.git
synced 2026-08-22 06:43:32 +00:00
17 lines
818 B
XML
17 lines
818 B
XML
<Window x:Class="VkNet.Wpf.MainWindow"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
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"
|
|
xmlns:local="clr-namespace:VkNet.Wpf"
|
|
mc:Ignorable="d"
|
|
Title="Главная" Height="350" Width="525" Initialized="Window_Initialized">
|
|
<Grid>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="197*"/>
|
|
<ColumnDefinition Width="320*"/>
|
|
</Grid.ColumnDefinitions>
|
|
<Button Content="Тест" HorizontalAlignment="Left" Margin="70,25,0,0" VerticalAlignment="Top" Width="75" Click="Button_Click"/>
|
|
|
|
</Grid>
|
|
</Window>
|