-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMainWindow.xaml
45 lines (42 loc) · 1.96 KB
/
MainWindow.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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<Window x:Class="CursedProjectAN.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:CursedProjectAN"
mc:Ignorable="d"
Title="Главная" Icon="C:\Users\Самар\Desktop\Курсач\CursedProjectAN\Images\cookie.png" Height="800" Width="1200" WindowStartupLocation="CenterScreen" >
<Grid Background="{StaticResource BrightLightYellow}">
<Image Source="C:\Users\Самар\Desktop\Курсач\CursedProjectAN\Images\cookie.png"
Height="60"
HorizontalAlignment="Left"
VerticalAlignment="Top"
Margin="10,0,0,0"/>
<TextBlock Text="CookieTour"
FontSize="40"
HorizontalAlignment="Left"
VerticalAlignment="Top"
Margin="70,8,0,0"
Foreground="{StaticResource BrightDarkRed}"
FontFamily="Bauhaus 93"/>
<Button Content="Вход"
HorizontalAlignment="Left"
VerticalAlignment="Top"
Width="150"
Height="50"
Click="LogAndReg_Click"
Margin="1030,10,0,0"
Background="{StaticResource BrightCoral}"
Foreground="{StaticResource BrightDarkRed}"
BorderBrush="{StaticResource BrightCoral}"
FontSize="20"/>
<Frame x:Name="MainFrame"
Source="SearchPage.xaml"
HorizontalAlignment="Left"
Height="699"
NavigationUIVisibility="Hidden"
VerticalAlignment="Top"
Width="1194"
Margin="0,70,0,0" />
</Grid>
</Window>