21 lines
774 B
Text
21 lines
774 B
Text
|
|
<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:views="clr-namespace:Discovery.Loader.Views"
|
||
|
|
xmlns:vm="using:Discovery.Loader.ViewModels"
|
||
|
|
mc:Ignorable="d"
|
||
|
|
x:Class="Discovery.Loader.Windows.MainWindow"
|
||
|
|
Icon="/Assets/icon.ico"
|
||
|
|
Title="Discovery"
|
||
|
|
Width="300"
|
||
|
|
Height="100"
|
||
|
|
WindowStartupLocation="CenterOwner"
|
||
|
|
CanResize="False"
|
||
|
|
ShowInTaskbar="False"
|
||
|
|
ExtendClientAreaToDecorationsHint="True"
|
||
|
|
ExtendClientAreaChromeHints="NoChrome"
|
||
|
|
ExtendClientAreaTitleBarHeightHint="-1">
|
||
|
|
<views:MainView />
|
||
|
|
</Window>
|