-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMainWindow.xaml
17 lines (17 loc) · 935 Bytes
/
MainWindow.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<Window x:Class="Lithicsoft_Trainer_Studio.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:Lithicsoft_Trainer_Studio"
mc:Ignorable="d"
Title="Lithicsoft Trainer Studio" Height="450" Width="800" MinHeight="450" MinWidth="800"
Icon="/Assets/Trainer Studio.png"
WindowStartupLocation="CenterScreen" Closing="MainWindow_Closing"
ResizeMode="NoResize"
xmlns:ui="http://schemas.modernwpf.com/2019"
ui:WindowHelper.UseModernWindowStyle="True">
<Grid Loaded="MainWindows_Loaded" Margin="0,0,150,0">
<ui:SimpleStackPanel x:Name="MainStackPanel" Margin="0,0,-150,0"/>
</Grid>
</Window>