2025-08-06 17:03:37 -07:00
|
|
|
<Window xmlns="https://github.com/avaloniaui"
|
|
|
|
|
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:MercuryConverter"
|
|
|
|
|
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
|
|
|
|
|
|
|
|
|
|
x:Class="MercuryConverter.MainWindow"
|
|
|
|
|
Title="MercuryConverter"
|
|
|
|
|
Width="1024" Height="800"
|
2025-08-07 17:41:58 -07:00
|
|
|
MinWidth="800" MinHeight="600"
|
2025-08-06 17:03:37 -07:00
|
|
|
ExtendClientAreaToDecorationsHint="True"
|
|
|
|
|
>
|
2025-08-07 17:41:58 -07:00
|
|
|
<!-- Components -->
|
2025-08-08 00:08:45 -07:00
|
|
|
<Panel>
|
|
|
|
|
<!-- Banner -->
|
|
|
|
|
<StackPanel>
|
|
|
|
|
<UserControl Background="{DynamicResource SystemAltHighColor}" Height="86"/>
|
|
|
|
|
</StackPanel>
|
|
|
|
|
<StackPanel HorizontalAlignment="Right">
|
|
|
|
|
<Image Height="86" Source="{DynamicResource BannerBitmap}"/>
|
|
|
|
|
</StackPanel>
|
2025-08-07 17:41:58 -07:00
|
|
|
|
2025-08-08 00:08:45 -07:00
|
|
|
<DockPanel>
|
|
|
|
|
<Menu Name="MenuBar" DockPanel.Dock="Top">
|
|
|
|
|
<MenuItem Header="File">
|
|
|
|
|
<MenuItem Header="Open Data Folder..." />
|
|
|
|
|
</MenuItem>
|
|
|
|
|
</Menu>
|
2025-08-07 17:41:58 -07:00
|
|
|
|
2025-08-08 00:08:45 -07:00
|
|
|
<TabControl>
|
|
|
|
|
<TabItem Header="selection">
|
|
|
|
|
<UserControl Name="SelectionControl"/>
|
|
|
|
|
</TabItem>
|
|
|
|
|
<TabItem Header="export">
|
|
|
|
|
</TabItem>
|
|
|
|
|
</TabControl>
|
|
|
|
|
</DockPanel>
|
|
|
|
|
</Panel>
|
2025-08-06 17:03:37 -07:00
|
|
|
</Window>
|