vknet_vk/examples/VkNet.Wpf/MainWindow.xaml
Инютин Максим Николаевич 45006b2a24 Тестовые примеры
2018-02-18 20:26:47 +03:00

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>