-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSplashScreen.xaml
More file actions
59 lines (55 loc) · 2.37 KB
/
SplashScreen.xaml
File metadata and controls
59 lines (55 loc) · 2.37 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
56
57
58
59
<Window x:Class="MediaViewer.SplashScreen"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="WontView Media Viewer"
Height="400" Width="600"
WindowStyle="None"
AllowsTransparency="True"
Background="Transparent"
WindowStartupLocation="CenterScreen"
ResizeMode="NoResize"
ShowInTaskbar="False"
Topmost="True">
<Grid>
<Border Background="#1E1E1E" CornerRadius="10">
<Border.Effect>
<DropShadowEffect Color="Black" BlurRadius="20" ShadowDepth="0" Opacity="0.8"/>
</Border.Effect>
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="*"/>
<RowDefinition Height="Auto"/>
<RowDefinition Height="50"/>
</Grid.RowDefinitions>
<!-- Splash Image -->
<Image Grid.Row="0"
Source="wontview-splash-screen-see-no-evil-monkey--t3chat--1.png"
Stretch="Uniform"
Margin="40,40,40,20"/>
<!-- App Name -->
<TextBlock Grid.Row="1"
Text="WontView Media Viewer"
FontSize="24"
FontWeight="Bold"
Foreground="White"
HorizontalAlignment="Center"
Margin="0,0,0,20"/>
<!-- Loading Indicator -->
<Grid Grid.Row="2" Margin="40,0,40,20">
<ProgressBar x:Name="LoadingProgressBar"
Height="6"
IsIndeterminate="True"
Background="#2D2D2D"
Foreground="#0078D4"
BorderThickness="0"/>
<TextBlock Text="Loading..."
FontSize="12"
Foreground="#AAAAAA"
HorizontalAlignment="Center"
VerticalAlignment="Center"
Margin="0,15,0,0"/>
</Grid>
</Grid>
</Border>
</Grid>
</Window>