mirror of
https://github.com/LorisYounger/VPet.git
synced 2024-08-30 18:42:36 +00:00
22 lines
1.4 KiB
XML
22 lines
1.4 KiB
XML
<pu:WindowX x:Class="VPet_Simulator.Windows.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" ResizeMode="NoResize"
|
|
xmlns:pu="clr-namespace:Panuon.WPF.UI;assembly=Panuon.WPF.UI" InputMethod.IsInputMethodEnabled="False"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" ShowInTaskbar="False"
|
|
xmlns:local="clr-namespace:VPet_Simulator.Windows" mc:Ignorable="d" WindowStyle="None" Title="MainWindow"
|
|
Closed="Window_Closed" pu:WindowXCaption.Height="0" SizeToContent="WidthAndHeight" Foreground="{StaticResource PrimaryText}"
|
|
Loaded="Window_SourceInitialized" LocationChanged="WindowX_LocationChanged" Background="{x:Null}">
|
|
<WindowChrome.WindowChrome>
|
|
<WindowChrome GlassFrameThickness="-1" />
|
|
</WindowChrome.WindowChrome>
|
|
<Grid x:Name="MGHost" x:FieldModifier="public">
|
|
<Grid x:Name="MGrid" Width="250" Height="Auto" x:FieldModifier="public">
|
|
<Label x:Name="LoadingText" HorizontalAlignment="Center" VerticalAlignment="Center"
|
|
Background="{DynamicResource DARKPrimaryLight}" Foreground="{DynamicResource DARKPrimaryText}"
|
|
Content="Loading" />
|
|
<Border x:Name="DisplayGrid" />
|
|
</Grid>
|
|
</Grid>
|
|
</pu:WindowX>
|