-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMainWindow.xaml
25 lines (20 loc) · 1.18 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
<Window x:Class="KeyTrain.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:KeyTrain"
mc:Ignorable="d"
Title="KeyTrain" Height="550" Width="825" MinHeight="460" MinWidth="575"
Background="#1f1f1f"
SourceInitialized="Window_SourceInitialized"
StateChanged="Window_StateChanged"
Closing="Window_Closing">
<Grid x:Name="Wrapper">
<!--<Button x:Name="SettingsButton" FontSize="25" Click="SettingsButton_Click" HorizontalAlignment="Right" Margin="0,11,10,0" VerticalAlignment="Top" Panel.ZIndex="10" Width="35" Height="35" Background="{x:Null}">
<Image Source="/appbar.cog.png" HorizontalAlignment="Center" VerticalAlignment="Center" Width="45" Height="45"></Image>
</Button>-->
<Frame x:Name="Frame" NavigationUIVisibility="Hidden" Focusable="False" >
</Frame>
</Grid>
</Window>