-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathwin_startup.xaml
39 lines (39 loc) · 994 Bytes
/
win_startup.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<?xml version="1.0" encoding="utf-8"?>
<Window
x:Class="bxc_bound.win_startup" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="bxc_bound"
WindowStyle="None"
ResizeMode="NoResize"
x:Name="window1"
VerticalAlignment="Top"
Height="600"
Width="1200"
ShowInTaskbar="False"
WindowStartupLocation="CenterScreen"
Topmost="True">
<Grid>
<Image
Grid.Column="0"
Grid.Row="0"
Margin="0,0,0,0"
HorizontalAlignment="Left"
VerticalAlignment="Top"
Source="startup.png"
Width="1200"
Height="600" />
<Label
HorizontalContentAlignment="Center"
Grid.Column="0"
Grid.Row="0"
HorizontalAlignment="Center"
Margin="0,0,0,0"
Content="正在努力扫描本地节点的ip,请耐心等待。。。"
FontWeight="Bold"
Foreground="White"
VerticalAlignment="Bottom"
VerticalContentAlignment="Center"
Height="120"
Width="1000"
FontSize="32" />
</Grid>
</Window>