12 lines
1.0 KiB
XML
12 lines
1.0 KiB
XML
<Window x:Class="MediaBrowser.Common.UI.Splash"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
Title="MediaBrowser" Height="346" Width="600" ShowInTaskbar="False" ResizeMode="NoResize" WindowStartupLocation="CenterScreen"
|
|
WindowState="Normal" WindowStyle="SingleBorderWindow" Background="Black" Loaded="Splash_Loaded">
|
|
<Grid Name="splashGrid">
|
|
<Image HorizontalAlignment="Left" Height="213" Margin="10,10,0,0" VerticalAlignment="Top" Width="574" Source="/MediaBrowser.Common;component/Resources/mblogo1000.png" Stretch="Fill"/>
|
|
<ProgressBar Name="pbProgress" Minimum="0" Maximum="100" HorizontalAlignment="Left" Height="24" Margin="10,242,0,0" VerticalAlignment="Top" Width="574"/>
|
|
<Label Name="lblProgress" Content="Label" HorizontalAlignment="Center" HorizontalContentAlignment="Center" Margin="10,282,10,0" VerticalAlignment="Top" Width="574" Foreground="White"/>
|
|
</Grid>
|
|
</Window>
|