-
Notifications
You must be signed in to change notification settings - Fork 0
/
UpdateProgressWindow.xaml
30 lines (29 loc) · 2.05 KB
/
UpdateProgressWindow.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
30
<Window
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:OCM_Installer_V2"
xmlns:ui="http://schemas.lepo.co/wpfui/2022/xaml" x:Class="OCM_Installer_V2.UpdateProgressWindow"
mc:Ignorable="d"
Title="Otako Craft Launcher" Height="329" Width="1102" HorizontalAlignment="Center" VerticalAlignment="Center" WindowStyle="None" ResizeMode="NoResize" ShowInTaskbar="False" SizeToContent="WidthAndHeight" WindowStartupLocation="CenterScreen" Focusable="False" Topmost="True">
<Window.Background>
<ImageBrush ImageSource="images/udbkg.png" Stretch="UniformToFill"/>
</Window.Background>
<Grid HorizontalAlignment="Center" VerticalAlignment="Center" Height="330" Width="1102">
<Label Content="Actualizando Launcher..." VerticalAlignment="Top" HorizontalContentAlignment="Center" VerticalContentAlignment="Center" Height="61" FontWeight="Bold" FontStyle="Italic" FontSize="42" Background="Transparent" Foreground="White" Canvas.Left="314" Canvas.Top="28" Margin="0,22,0,0">
<Label.Effect>
<DropShadowEffect/>
</Label.Effect>
</Label>
<Image x:Name="OCMLogo" HorizontalAlignment="Center" Height="94" VerticalAlignment="Top" Width="778" Source="images/ocmlogomenu.png" Canvas.Left="105" Canvas.Top="125" Margin="0,102,0,0"/>
<ui:ProgressRing HorizontalAlignment="Center" Margin="0,210,0,0" VerticalAlignment="Top" IsIndeterminate="True" Height="100" Width="100">
<ui:ProgressRing.Foreground>
<LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
<GradientStop Color="Magenta"/>
<GradientStop Color="Cyan" Offset="1"/>
</LinearGradientBrush>
</ui:ProgressRing.Foreground>
</ui:ProgressRing>
</Grid>
</Window>