2023-07-03 11:41:16 +00:00
|
|
|
<pu:WindowX x:Class="VPet_Simulator.Windows.MainWindow"
|
|
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
2022-12-13 07:10:18 +00:00
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" ResizeMode="NoResize"
|
2023-04-01 15:15:50 +00:00
|
|
|
xmlns:pu="clr-namespace:Panuon.WPF.UI;assembly=Panuon.WPF.UI"
|
2022-12-20 10:08:30 +00:00
|
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" ShowInTaskbar="False"
|
2022-12-13 07:10:18 +00:00
|
|
|
xmlns:local="clr-namespace:VPet_Simulator.Windows" mc:Ignorable="d" WindowStyle="None" Title="MainWindow"
|
2024-04-18 13:59:00 +00:00
|
|
|
Closed="Window_Closed" pu:WindowXCaption.Height="0" SizeToContent="WidthAndHeight" Foreground="{StaticResource PrimaryText}"
|
2023-09-04 05:01:16 +00:00
|
|
|
Loaded="Window_SourceInitialized" LocationChanged="WindowX_LocationChanged" Background="{x:Null}">
|
2022-12-13 07:10:18 +00:00
|
|
|
<WindowChrome.WindowChrome>
|
|
|
|
<WindowChrome GlassFrameThickness="-1" />
|
|
|
|
</WindowChrome.WindowChrome>
|
2024-03-12 16:38:23 +00:00
|
|
|
<Grid x:Name="MGHost" x:FieldModifier="public">
|
|
|
|
<Grid x:Name="MGrid" Width="250" Height="Auto" x:FieldModifier="public">
|
2024-03-12 11:36:47 +00:00
|
|
|
<Label x:Name="LoadingText" HorizontalAlignment="Center" VerticalAlignment="Center"
|
|
|
|
Background="{DynamicResource DARKPrimaryLight}" Foreground="{DynamicResource DARKPrimaryText}"
|
|
|
|
Content="Loading" />
|
|
|
|
<Border x:Name="DisplayGrid" />
|
|
|
|
</Grid>
|
2022-12-13 07:10:18 +00:00
|
|
|
</Grid>
|
2023-04-01 15:15:50 +00:00
|
|
|
</pu:WindowX>
|