alielie
2026-09-10 f3889f2d36c50cf99468594854def9b7ed069fb5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<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>