2025-07-26 11:20:03 +08:00
|
|
|
<Window x:Class="DMS.WPF.Views.SplashWindow"
|
|
|
|
|
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"
|
|
|
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
2025-09-09 17:47:20 +08:00
|
|
|
xmlns:vm="clr-namespace:DMS.WPF.ViewModels"
|
|
|
|
|
d:DataContext="{d:DesignInstance vm:SplashViewModel}"
|
2025-07-26 11:20:03 +08:00
|
|
|
xmlns:local="clr-namespace:DMS.WPF.Views"
|
|
|
|
|
mc:Ignorable="d"
|
2025-09-09 17:47:20 +08:00
|
|
|
Title="正在启动..." Height="400" Width="600"
|
2025-07-26 11:20:03 +08:00
|
|
|
WindowStyle="None" WindowStartupLocation="CenterScreen" AllowsTransparency="True" Background="Transparent">
|
|
|
|
|
<Grid>
|
|
|
|
|
<Border CornerRadius="10" Background="#FF333333">
|
|
|
|
|
<StackPanel VerticalAlignment="Center" HorizontalAlignment="Center">
|
2025-07-26 12:19:05 +08:00
|
|
|
<Image Source="/Assets/AppIcon2.ico" Width="100" Height="100"/>
|
2025-09-09 17:47:20 +08:00
|
|
|
<TextBlock VerticalAlignment="Center" TextWrapping="Wrap" MaxWidth="500" Text="{Binding LoadingMessage}" Foreground="White" FontSize="16" Margin="0,20,0,0"/>
|
2025-07-26 11:20:03 +08:00
|
|
|
</StackPanel>
|
|
|
|
|
</Border>
|
|
|
|
|
</Grid>
|
|
|
|
|
</Window>
|