-
Notifications
You must be signed in to change notification settings - Fork 50
/
UpdateWindow.xaml
21 lines (21 loc) · 1.36 KB
/
UpdateWindow.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<Controls:MetroWindow x:Class="LeagueSharp.Loader.Views.UpdateWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:Controls="clr-namespace:MahApps.Metro.Controls;assembly=MahApps.Metro"
Title="{DynamicResource UpdatingLeagueSharp}"
Height="233"
Width="388.99"
ResizeMode="NoResize"
WindowStartupLocation="CenterScreen"
Activated="UpdateWindow_OnActivated"
BorderThickness="1"
ShowCloseButton="False"
Icon="../Resources/icon_64x64.ico"
ShowIconOnTitleBar="False"
BorderBrush="DeepSkyBlue">
<Grid>
<ProgressBar Margin="10,0,10,61" Height="30" RenderTransformOrigin="0.5,0.5" x:Name="UpdateProgressBar" VerticalAlignment="Bottom" />
<Label Foreground="Gray" FontSize="50" HorizontalContentAlignment="Center" VerticalContentAlignment="Center" Content="{DynamicResource Updating}" Margin="0,10,0,96"/>
<Label x:Name="ProgressLabel" Content="{DynamicResource UpdateWaiting}" Margin="10,0,10,10" Height="31" VerticalAlignment="Bottom" />
</Grid>
</Controls:MetroWindow>