-
Notifications
You must be signed in to change notification settings - Fork 0
/
WindowTest.xaml
27 lines (22 loc) · 1.12 KB
/
WindowTest.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<Window x:Class="FinalPart.WindowTest"
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:FinalPart"
mc:Ignorable="d"
Title="WindowTest" Height="366.821" Width="503.248">
<Grid x:Name="MainGrid">
<Grid.RowDefinitions>
<RowDefinition Height="1*"/>
<RowDefinition Height="5*"/>
<RowDefinition Height="1*"/>
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="1*"/>
<ColumnDefinition Width="5*"/>
</Grid.ColumnDefinitions>
<Label Grid.Column="0" Grid.Row="0" BorderThickness="3" BorderBrush="#FFD2D9F1" Background="#FFD2D9F1" Foreground="White" FontWeight="Bold"/>
<Button Content="Применить" Grid.Column="0" Grid.Row="2" Grid.ColumnSpan="2" FontSize="14" Background="#FFDDDDDD"/>
</Grid>
</Window>