mirror of
https://github.com/LorisYounger/VPet.git
synced 2024-08-30 18:42:36 +00:00
16 lines
988 B
XML
16 lines
988 B
XML
<Window 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:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" ShowInTaskbar="False"
|
|
xmlns:local="clr-namespace:VPet_Simulator.Windows" mc:Ignorable="d" WindowStyle="None" Title="MainWindow"
|
|
Height="250" Width="250" Background="{x:Null}" Topmost="True">
|
|
<WindowChrome.WindowChrome>
|
|
<WindowChrome GlassFrameThickness="-1" />
|
|
</WindowChrome.WindowChrome>
|
|
<Grid><Label x:Name="LoadingText" HorizontalAlignment="Center" VerticalAlignment="Center"
|
|
Background="{DynamicResource DARKPrimaryLight}" Foreground="{DynamicResource DARKPrimaryText}"
|
|
Content="桌宠加载中" />
|
|
<Border x:Name="DisplayGrid" />
|
|
</Grid>
|
|
</Window>
|