Style splash window

This commit is contained in:
Eric Reed
2013-04-16 15:31:15 -04:00
parent eb9d11cf57
commit bc03765275
6 changed files with 16 additions and 9 deletions

View File

@@ -19,9 +19,10 @@ namespace MediaBrowser.ServerApplication.Splash
/// </summary>
public partial class SplashWindow : Window
{
public SplashWindow()
public SplashWindow(Version version)
{
InitializeComponent();
lblStatus.Text = string.Format("Loading Media Browser Server\nVersion {0}...", version);
}
}
}