-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SearchProgressWindow.xaml
29 lines (26 loc) · 1.14 KB
/
SearchProgressWindow.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
<Window x:Class="Elite_Dangerous_Addon_Launcher_V2.SearchProgressWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:Elite_Dangerous_Addon_Launcher_V2"
Title="Searching for Elite Dangerous"
Height="150"
Width="400"
xmlns:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes"
TextElement.Foreground="{DynamicResource MaterialDesign.Brush.Foreground}"
Background="{DynamicResource MaterialDesign.Brush.Background}"
TextElement.FontWeight="Regular"
TextElement.FontSize="12"
FontFamily="{materialDesign:MaterialDesignFont}"
TextOptions.TextFormattingMode="Ideal"
TextOptions.TextRenderingMode="Auto"
>
<Grid>
<TextBlock Name="searchStatusTextBlock"
Text="Searching for Elite Dangerous..."
HorizontalAlignment="Center"
VerticalAlignment="Top"
Margin="10" />
<ProgressBar IsIndeterminate="True"
Margin="20" />
</Grid>
</Window>