<Window x:Class="OpenTapEditor.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:OpenTapEditor"
|
mc:Ignorable="d"
|
xmlns:ll="clr-namespace:OpenTapEditor;assembly=SeqEditor"
|
xmlns:ui="clr-namespace:UILib;assembly=UILib"
|
x:Name="self"
|
WindowState="Maximized"
|
Closing="self_Closing"
|
Background="{DynamicResource TsBgBrush}"
|
FontSize="{DynamicResource GlobalFontSize}"
|
Title="MainWindow" Height="1080" Width="1920">
|
<Grid>
|
<ll:SeqEditorUI x:Name="seqEditorUI" />
|
</Grid>
|
</Window>
|