VPet/VPet-Simulator.Windows/MainWindow.xaml

20 lines
1.2 KiB
Plaintext
Raw Normal View History

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"
2023-09-04 05:01:16 +00:00
Width="250" Closed="Window_Closed" pu:WindowXCaption.Height="0" SizeToContent="Height"
Loaded="Window_SourceInitialized" LocationChanged="WindowX_LocationChanged" Background="{x:Null}">
2022-12-13 07:10:18 +00:00
<WindowChrome.WindowChrome>
<WindowChrome GlassFrameThickness="-1" />
</WindowChrome.WindowChrome>
2023-07-03 11:41:16 +00:00
<Grid>
<Label x:Name="LoadingText" HorizontalAlignment="Center" VerticalAlignment="Center"
2023-01-08 16:57:10 +00:00
Background="{DynamicResource DARKPrimaryLight}" Foreground="{DynamicResource DARKPrimaryText}"
2023-07-01 07:46:08 +00:00
Content="Loading" />
2023-01-08 16:57:10 +00:00
<Border x:Name="DisplayGrid" />
2022-12-13 07:10:18 +00:00
</Grid>
2023-04-01 15:15:50 +00:00
</pu:WindowX>