mirror of
https://github.com/chylex/Discord-History-Tracker.git
synced 2024-11-25 05:42:45 +01:00
24 lines
997 B
XML
24 lines
997 B
XML
<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:main="clr-namespace:DHT.Desktop.Main"
|
|
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
|
|
x:Class="DHT.Desktop.Main.MainWindow"
|
|
Title="{Binding Title}"
|
|
Icon="avares://DiscordHistoryTracker/Resources/icon.ico"
|
|
Width="800" Height="500"
|
|
MinWidth="480" MinHeight="240"
|
|
WindowStartupLocation="CenterScreen"
|
|
Closed="OnClosed">
|
|
|
|
<Design.DataContext>
|
|
<main:MainWindowModel />
|
|
</Design.DataContext>
|
|
|
|
<Panel>
|
|
<ContentPresenter Content="{Binding WelcomeScreen}" IsVisible="{Binding ShowWelcomeScreen}" />
|
|
<ContentPresenter Content="{Binding MainContentScreen}" IsVisible="{Binding ShowMainContentScreen}" />
|
|
</Panel>
|
|
</Window>
|