上传文件至 TslGameLauncher

This commit is contained in:
才羽青空 2025-05-02 16:30:09 +00:00
parent 9ea64886a7
commit c6b76dcc4f
5 changed files with 130 additions and 0 deletions

View file

@ -0,0 +1,17 @@
<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>