-
-
Notifications
You must be signed in to change notification settings - Fork 104
Expand file tree
/
Copy pathDownloadProgressDialog.xaml
More file actions
55 lines (51 loc) · 2.02 KB
/
DownloadProgressDialog.xaml
File metadata and controls
55 lines (51 loc) · 2.02 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<Window x:Class="BabySmash.DownloadProgressDialog"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Downloading Update"
Height="220"
Width="480"
WindowStartupLocation="CenterScreen"
ResizeMode="NoResize"
Background="#FFFAFAFA"
WindowStyle="None"
AllowsTransparency="True">
<Border BorderBrush="#FF2196F3"
BorderThickness="2"
CornerRadius="12"
Background="#FFFAFAFA">
<Grid Margin="32">
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
</Grid.RowDefinitions>
<TextBlock Grid.Row="0"
Text="⬇️ Downloading BabySmash! Update..."
FontSize="18"
FontWeight="Bold"
Foreground="#FF2196F3"
Margin="0,0,0,20"/>
<ProgressBar Grid.Row="1"
x:Name="ProgressBar"
Height="24"
Minimum="0"
Maximum="100"
Value="0"
Margin="0,0,0,12"/>
<TextBlock Grid.Row="2"
x:Name="ProgressText"
Text="0 MB / 0 MB (0%)"
FontSize="13"
Foreground="#FF666666"
HorizontalAlignment="Center"
Margin="0,0,0,16"/>
<TextBlock Grid.Row="3"
Text="Please wait - your little one will be smashing keys in no time!"
FontSize="12"
Foreground="#FF999999"
HorizontalAlignment="Center"
TextWrapping="Wrap"/>
</Grid>
</Border>
</Window>