-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMainWindow.xaml
More file actions
29 lines (27 loc) · 1.33 KB
/
MainWindow.xaml
File metadata and controls
29 lines (27 loc) · 1.33 KB
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
28
29
<Window x:Class="DatesApp.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:DatesApp"
Title="Date App" Height="400" Width="450">
<Grid Margin="10">
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
<RowDefinition Height="*"/>
</Grid.RowDefinitions>
<StackPanel>
<TextBlock Margin="0 5" FontSize="15">Дни:</TextBlock>
<TextBox x:Name="DayBox" Height="20"/>
<TextBlock Margin="0 5" FontSize="15">Месяца:</TextBlock>
<TextBox x:Name="MonthBox" Height="20"/>
<TextBlock Margin="0 5" FontSize="15">Года:</TextBlock>
<TextBox x:Name="YearBox" Height="20"/>
<Button Content="Установить" Click="SetDate" Margin="0 20 0 5" Padding="5"/>
<Button Content="Добавить" Click="AddDate" Margin="0 5" Padding="5"/>
<Button Content="Сбросить" Click="ResetDate" Margin="0 5" Padding="5"/>
</StackPanel>
<StackPanel Grid.Row="2">
<TextBlock HorizontalAlignment="Center" x:Name="ResultText" FontSize="20" Margin="0 15"/>
</StackPanel>
</Grid>
</Window>