-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMainWindow.xaml
More file actions
27 lines (27 loc) · 1.27 KB
/
MainWindow.xaml
File metadata and controls
27 lines (27 loc) · 1.27 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
<Window x:Class="PingApp.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:tools="clr-namespace:PingApp.Tools"
xmlns:local="clr-namespace:PingApp"
xmlns:controls="clr-namespace:PingApp.Controls"
xmlns:views="clr-namespace:PingApp.Views"
mc:Ignorable="d"
Title="Ping App" Height="auto" Width="auto" MinHeight="850" MinWidth="1485"
Background="#546A76"
Foreground="#F5E9E2" Icon="/icons8-ping-96.png"
>
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="auto"/>
<RowDefinition Height="*"/>
<RowDefinition Height="auto"/>
<RowDefinition Height="auto"/>
</Grid.RowDefinitions>
<controls:PingAppRibbon Grid.Row="0" DataContext="{Binding Ribbon}"/>
<ContentControl Grid.Row="1" Content="{Binding CurrentViewModel}"/>
<ContentControl Grid.Row="2" Content="{Binding LoggsViewModel}"/>
<ContentControl Grid.Row="3" Content="{Binding StatusBarViewModel}"/>
</Grid>
</Window>