This repository has been archived by the owner on Nov 13, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MainWindow.xaml
100 lines (99 loc) · 4.6 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<Window x:Class="Calculator.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:Calculator"
mc:Ignorable="d"
Title="Калькулятор" Height="481.2" Width="560.2" Background="#FF032306" Foreground="{x:Null}" ResizeMode="NoResize" WindowStyle="None" MouseLeftButtonDown="Window_MouseLeftButtonDown" AllowsTransparency="False" WindowStartupLocation="CenterScreen" Icon="logo.jpg">
<Grid x:Name="Main">
<Grid x:Name="NavPanel" Margin="0,0,0,-0.4">
<StackPanel Margin="0,0,518,0" Orientation="Vertical" Background="#FF031A05">
<Button ToolTip="Обычный калькулятор"
Click="Standart_Click"
Width="30"
Margin="0,157,0,0"
RenderTransformOrigin="0.5,0.5"
Height="30"
BorderBrush="{x:Null}"
Foreground="#FF12FF14"
Content="+/-"
FontFamily="Lucida Sans"
FontSize="10"
Background="#FF043104">
<Button.Resources>
<Style TargetType="{x:Type Border}">
<Setter Property="CornerRadius" Value="5"/>
</Style>
</Button.Resources>
</Button>
<Button ToolTip="Научный калькулятор"
Click="Scientific_Click"
Height="29" Width="30"
Margin="0,10,0,0"
BorderBrush="{x:Null}"
Foreground="#FF12FF14"
Content="🧪"
FontFamily="Lucida Sans"
FontSize="10"
Background="#FF043104">
<Button.Resources>
<Style TargetType="{x:Type Border}">
<Setter Property="CornerRadius" Value="5"/>
</Style>
</Button.Resources>
</Button>
<Button ToolTip="Калькулятор индекса массы тела"
Click="Weight_Click"
Height="29" Width="30"
Margin="5.8,10,5.8,0"
BorderBrush="{x:Null}"
Foreground="#FF12FF14"
Content="⚖"
FontFamily="Lucida Sans"
Background="#FF043104">
<Button.Resources>
<Style TargetType="{x:Type Border}">
<Setter Property="CornerRadius" Value="5"/>
</Style>
</Button.Resources>
</Button>
</StackPanel>
<Frame x:Name="Panel" Margin="42,0,1,-0.4" NavigationUIVisibility="Hidden" Navigated="Panel_Navigated"/>
</Grid>
<Button x:Name="Close_Click" ToolTip="Закрыть"
Content="❌"
HorizontalAlignment="Left"
Click="CloseProgramm"
Margin="4,5,0,0"
VerticalAlignment="Top"
Width="17" Height="14"
FontSize="8"
Foreground="#FF26C42E"
BorderBrush="{x:Null}"
Background="{x:Null}"/>
<Label ToolTip="Ярош Никита Валерьевич ПИ-б-о-192(1)"
x:Name="Powered"
Content="Powered By Yarosh"
HorizontalAlignment="Left"
Margin="440,449,0,0"
VerticalAlignment="Top"
Background="{x:Null}"
Foreground="#FF125114"
FontFamily="Digital-7 Mono"
FontSize="13"/>
<Button x:Name="Minimize_Click"
ToolTip="Минимизировать"
Content="➖"
HorizontalAlignment="Left"
Height="14"
Margin="21,5,0,0"
VerticalAlignment="Top"
Width="17"
Background="{x:Null}"
BorderBrush="{x:Null}"
Foreground="#FF28BF31"
FontSize="8"
Click="Minimized"/>
</Grid>
</Window>