-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMainWindow.xaml
More file actions
26 lines (25 loc) · 1.29 KB
/
MainWindow.xaml
File metadata and controls
26 lines (25 loc) · 1.29 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
<Window x:Class="SEW.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:SEW"
mc:Ignorable="d"
Title="SEW - Study English Words"
Height="500" Width="950" ResizeMode="CanResizeWithGrip"
MinWidth="785" MinHeight="420"
MaxWidth="1280" MaxHeight="720" >
<DockPanel>
<Border DockPanel.Dock="Left" Width="150">
<StackPanel>
<Button Content=" Учить" Style="{DynamicResource SLeftPanel}" Click="GoToLearnPage" />
<Button Content=" Категории" Style="{DynamicResource SLeftPanel}" Click="GoToCategoriesPage" />
<Button Content=" Найти слово" Style="{DynamicResource SLeftPanel}" Click="GoToSearchPage" />
<Button Content=" Настройки" Style="{DynamicResource SLeftPanel}" Click="GoToSettingsPage" />
</StackPanel>
</Border>
<Grid>
<Frame x:Name="Main" NavigationUIVisibility="Hidden" />
</Grid>
</DockPanel>
</Window>