Style splash window
This commit is contained in:
parent
eb9d11cf57
commit
bc03765275
|
@ -176,7 +176,7 @@ namespace MediaBrowser.ServerApplication
|
||||||
/// <returns>Task.</returns>
|
/// <returns>Task.</returns>
|
||||||
public override async Task Init()
|
public override async Task Init()
|
||||||
{
|
{
|
||||||
var win = new SplashWindow();
|
var win = new SplashWindow(ApplicationVersion);
|
||||||
|
|
||||||
win.Show();
|
win.Show();
|
||||||
|
|
||||||
|
|
|
@ -376,6 +376,7 @@
|
||||||
</BootstrapperPackage>
|
</BootstrapperPackage>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
<Resource Include="Resources\Images\mb3logo800.png" />
|
||||||
<Content Include="x64\SQLite.Interop.dll">
|
<Content Include="x64\SQLite.Interop.dll">
|
||||||
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
||||||
</Content>
|
</Content>
|
||||||
|
|
BIN
MediaBrowser.ServerApplication/Resources/Images/mb3logo800.png
Normal file
BIN
MediaBrowser.ServerApplication/Resources/Images/mb3logo800.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 35 KiB |
|
@ -1,8 +1,16 @@
|
||||||
<Window x:Class="MediaBrowser.ServerApplication.Splash.SplashWindow"
|
<Window x:Class="MediaBrowser.ServerApplication.Splash.SplashWindow"
|
||||||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||||
Height="300" Width="400" WindowStartupLocation="CenterScreen" Title="Media Browser Server" ShowInTaskbar="True" WindowStyle="None" BorderThickness="1" BorderBrush="#cccccc" AllowsTransparency="True">
|
Height="386.939" Width="664.49" WindowStartupLocation="CenterScreen" Title="Media Browser Server" ShowInTaskbar="True" WindowStyle="None" BorderThickness="1" BorderBrush="#cccccc" AllowsTransparency="True">
|
||||||
<Grid>
|
<Border BorderBrush="DarkGray" BorderThickness="2" Margin="0,0,0,0">
|
||||||
<TextBlock>Loading</TextBlock>
|
<Grid Margin="-2,0,0,0">
|
||||||
</Grid>
|
<Image x:Name="imgLogo" HorizontalAlignment="Center" Height="146" Margin="0,10,44,0" VerticalAlignment="Top" Width="616" Source="/Resources/Images/mb3logo800.png" Opacity="0.5"/>
|
||||||
|
<Grid HorizontalAlignment="Left" Height="153" Margin="0,173,0,0" VerticalAlignment="Top" Width="662" Background="Gray">
|
||||||
|
<TextBlock x:Name="lblStatus" HorizontalAlignment="Left" Margin="12,14,0,18" Width="637" FontSize="36" Foreground="#FFE6D7D7" Text="Loading Media Browser Server..." TextWrapping="WrapWithOverflow"/>
|
||||||
|
<Rectangle Fill="#FF49494B" HorizontalAlignment="Left" Height="13" Stroke="Black" VerticalAlignment="Bottom" Width="662"/>
|
||||||
|
<Rectangle x:Name="rectProgress" Fill="#FF0A0ABF" HorizontalAlignment="Left" Height="13" Stroke="Black" VerticalAlignment="Bottom" Width="0"/>
|
||||||
|
</Grid>
|
||||||
|
</Grid>
|
||||||
|
|
||||||
|
</Border>
|
||||||
</Window>
|
</Window>
|
||||||
|
|
|
@ -19,9 +19,10 @@ namespace MediaBrowser.ServerApplication.Splash
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public partial class SplashWindow : Window
|
public partial class SplashWindow : Window
|
||||||
{
|
{
|
||||||
public SplashWindow()
|
public SplashWindow(Version version)
|
||||||
{
|
{
|
||||||
InitializeComponent();
|
InitializeComponent();
|
||||||
|
lblStatus.Text = string.Format("Loading Media Browser Server\nVersion {0}...", version);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -173,7 +173,4 @@ Global
|
||||||
GlobalSection(SolutionProperties) = preSolution
|
GlobalSection(SolutionProperties) = preSolution
|
||||||
HideSolutionNode = FALSE
|
HideSolutionNode = FALSE
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
GlobalSection(Performance) = preSolution
|
|
||||||
HasPerformanceSessions = true
|
|
||||||
EndGlobalSection
|
|
||||||
EndGlobal
|
EndGlobal
|
||||||
|
|
Loading…
Reference in New Issue
Block a user