17 lines
No EOL
781 B
XML
17 lines
No EOL
781 B
XML
<Window x:Class="TslLauncher.MainWindow"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
Title="PUBG Launcher"
|
|
Height="360"
|
|
Width="640"
|
|
WindowStyle="None"
|
|
WindowStartupLocation="CenterScreen"
|
|
ResizeMode="NoResize"
|
|
ShowInTaskbar="False"
|
|
Topmost="True">
|
|
<Window.Background>
|
|
<ImageBrush ImageSource="/Resource/Image/Splash.png" Stretch="Fill"/>
|
|
</Window.Background>
|
|
<TextBlock x:Name="StatusText"
|
|
FontSize="20" Background="#FFFBE31E" Foreground="Black" Text="游戏启动中" FontFamily="Alimama FangYuanTi VF SemiBold" FontWeight="Bold" Margin="257,79,256,258"/>
|
|
</Window> |