-
-
Notifications
You must be signed in to change notification settings - Fork 109
Expand file tree
/
Copy pathThemeDownloadDialog.xaml
More file actions
39 lines (37 loc) · 1.76 KB
/
ThemeDownloadDialog.xaml
File metadata and controls
39 lines (37 loc) · 1.76 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
<default:ReloadedWindow
x:Class="Reloaded.Mod.Launcher.Pages.Dialogs.ThemeDownloadDialog"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:converters="clr-namespace:Reloaded.Mod.Launcher.Converters"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:default="clr-namespace:Reloaded.WPF.Theme.Default;assembly=Reloaded.WPF.Theme.Default"
xmlns:local="clr-namespace:Reloaded.Mod.Launcher.Pages.Dialogs"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
Title="Downloading Theme..."
Width="500"
DataContext="{Binding RelativeSource={RelativeSource Self}}"
SizeToContent="Height"
Style="{DynamicResource ReloadedWindow}"
mc:Ignorable="d">
<Grid Height="50" Background="{DynamicResource BackgroundBrush}">
<Grid Margin="6">
<Grid Width="400" HorizontalAlignment="Left">
<ProgressBar x:Name="ThemeProgressBar" />
<TextBlock
x:Name="ThemeTextBlock"
HorizontalAlignment="Center"
VerticalAlignment="Center">
<TextBlock.Foreground>
<LinearGradientBrush>
<GradientStop Offset="0.0" Color="Black" />
<GradientStop Offset="0.0" Color="White" />
</LinearGradientBrush>
</TextBlock.Foreground>
</TextBlock>
</Grid>
<Grid Width="90" HorizontalAlignment="Right">
<Button Name="CancelButton" PreviewMouseDown="CancelButton_PreviewMouseDown">Cancel</Button>
</Grid>
</Grid>
</Grid>
</default:ReloadedWindow>