2012-08-25 17:05:41 +00:00
|
|
|
<Controls:MetroWindow x:Class="MediaBrowser.Common.UI.Splash"
|
2012-08-05 02:21:38 +00:00
|
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
2012-08-25 17:05:41 +00:00
|
|
|
xmlns:Controls="clr-namespace:MahApps.Metro.Controls;assembly=MahApps.Metro"
|
|
|
|
Title="MediaBrowser"
|
2012-09-17 18:47:51 +00:00
|
|
|
Height="230"
|
2012-08-25 18:11:01 +00:00
|
|
|
Width="520"
|
2012-08-25 17:05:41 +00:00
|
|
|
ShowInTaskbar="True"
|
|
|
|
ResizeMode="NoResize"
|
|
|
|
WindowStartupLocation="CenterScreen"
|
2012-08-25 18:11:01 +00:00
|
|
|
WindowState="Normal"
|
|
|
|
FontSize="14">
|
2012-09-08 15:00:09 +00:00
|
|
|
<Window.Resources>
|
|
|
|
<ResourceDictionary>
|
|
|
|
<Style TargetType="{x:Type Controls:WindowCommands}">
|
|
|
|
<Setter Property="Visibility" Value="Hidden" />
|
|
|
|
</Style>
|
|
|
|
</ResourceDictionary>
|
|
|
|
</Window.Resources>
|
2012-08-25 17:31:58 +00:00
|
|
|
<Window.Background>
|
2012-09-02 20:24:10 +00:00
|
|
|
<RadialGradientBrush RadiusX=".75" RadiusY=".75">
|
|
|
|
<GradientStop Color="White" Offset="0.0"/>
|
|
|
|
<GradientStop Color="WhiteSmoke" Offset="0.65"/>
|
|
|
|
<GradientStop Color="#cfcfcf" Offset="1.0"/>
|
2012-08-25 17:31:58 +00:00
|
|
|
</RadialGradientBrush>
|
|
|
|
</Window.Background>
|
2012-08-19 18:01:43 +00:00
|
|
|
<Grid Name="splashGrid">
|
2012-09-02 20:24:10 +00:00
|
|
|
<Image x:Name="imgLogo" HorizontalAlignment="Left" VerticalAlignment="Top" Stretch="Uniform" Grid.Row="0" Margin="10 10 10 10" Source="../Resources/Images/mblogoblack.png"/>
|
2012-09-17 18:47:51 +00:00
|
|
|
<StackPanel Margin="0,130,10,0" VerticalAlignment="Center" HorizontalAlignment="Center" Grid.Row="2" Orientation="Horizontal">
|
|
|
|
<TextBlock Name="lblProgress" FontSize="18" Foreground="Black" Text="Label"></TextBlock>
|
|
|
|
</StackPanel>
|
2012-08-05 02:21:38 +00:00
|
|
|
</Grid>
|
2012-08-25 17:05:41 +00:00
|
|
|
</Controls:MetroWindow>
|