-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathWindow2.xaml
More file actions
23 lines (23 loc) · 1.44 KB
/
Copy pathWindow2.xaml
File metadata and controls
23 lines (23 loc) · 1.44 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<Window x:Class="Window2" AllowsTransparency="True" Background="Transparent"
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"
xmlns:local="clr-namespace:SeewoStart"
mc:Ignorable="d"
Title="希沃原板 - 正在更新" Height="53.6" Width="800" ResizeMode="NoResize" WindowStartupLocation="Manual" WindowStyle="None" Visibility="Visible">
<Window.Resources>
<Storyboard x:Key="ColorAnimation">
<ColorAnimation
Storyboard.TargetProperty="(ProgressBar.Foreground).(SolidColorBrush.Color)"
From="Red" To="Blue" Duration="0:0:1"
AutoReverse="True" RepeatBehavior="Forever" />
</Storyboard>
</Window.Resources>
<Border Background="#FFEBDAE0" CornerRadius="20">
<Grid>
<Image x:Name="image1" HorizontalAlignment="Left" Height="33.6" Margin="10,10,0,0" VerticalAlignment="Top" Width="38" Source="default-img/81.ico"/>
<TextBlock x:Name="w1" HorizontalAlignment="Left" Height="33.6" Margin="51.9,10,0,0" TextWrapping="Wrap" Text="正在更新配置,请稍后..." VerticalAlignment="Top" Width="726.056" FontFamily="/SeewoStart;component/Font/#HarmonyOS Sans SC Black" FontSize="25"/>
</Grid>
</Border>
</Window>