diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-02-15 13:08:25 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-02-15 13:08:25 -0500 |
| commit | bf1c36ba613c5b62a43fb2f56590e1337945ed6a (patch) | |
| tree | bdf7ae0c8c69c561b711739591cdc5695eeb0a35 /MediaBrowser.ServerApplication/App.xaml.cs | |
| parent | 60213b2d3c2b03f088bb4668960b1c3a0a5ab8f6 (diff) | |
convert splash window to win forms
Diffstat (limited to 'MediaBrowser.ServerApplication/App.xaml.cs')
| -rw-r--r-- | MediaBrowser.ServerApplication/App.xaml.cs | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/MediaBrowser.ServerApplication/App.xaml.cs b/MediaBrowser.ServerApplication/App.xaml.cs index 839841620..2186a19f8 100644 --- a/MediaBrowser.ServerApplication/App.xaml.cs +++ b/MediaBrowser.ServerApplication/App.xaml.cs @@ -124,19 +124,10 @@ namespace MediaBrowser.ServerApplication _mainWindow = win; } - private void HideMainWindow() - { - if (_mainWindow != null) - { - _mainWindow.Hide(); - _mainWindow = null; - } - } - - private SplashWindow _splashWindow; + private SplashForm _splashWindow; private void ShowSplashWindow(Progress<double> progress) { - var win = new SplashWindow(_appHost.ApplicationVersion, progress); + var win = new SplashForm(_appHost.ApplicationVersion, progress); win.Show(); _splashWindow = win; |
