From 1b45cd4a151ba1f25a1a70fea1aec010a3815ebf Mon Sep 17 00:00:00 2001 From: RedShirtMB Mark Linton redshirt linton Date: Sat, 25 Aug 2012 11:22:09 -0700 Subject: [PATCH] Removed PInvoke code that hid the close button. --- MediaBrowser.Common/UI/Splash.xaml.cs | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/MediaBrowser.Common/UI/Splash.xaml.cs b/MediaBrowser.Common/UI/Splash.xaml.cs index 1fd66bda45..f66f9ec8fc 100644 --- a/MediaBrowser.Common/UI/Splash.xaml.cs +++ b/MediaBrowser.Common/UI/Splash.xaml.cs @@ -1,7 +1,5 @@ using System; -using System.Runtime.InteropServices; using System.Windows; -using System.Windows.Interop; using MahApps.Metro.Controls; using MediaBrowser.Common.Logging; using MediaBrowser.Model.Progress; @@ -13,13 +11,6 @@ namespace MediaBrowser.Common.UI /// public partial class Splash : MetroWindow { - private const int GWL_STYLE = -16; - private const int WS_SYSMENU = 0x80000; - [DllImport("user32.dll", SetLastError = true)] - private static extern int GetWindowLong(IntPtr hWnd, int nIndex); - [DllImport("user32.dll")] - private static extern int SetWindowLong(IntPtr hWnd, int nIndex, int dwNewLong); - public Splash(Progress progress) { InitializeComponent(); @@ -42,9 +33,6 @@ namespace MediaBrowser.Common.UI private void Splash_Loaded(object sender, RoutedEventArgs e) { - var hwnd = new WindowInteropHelper(this).Handle; - SetWindowLong(hwnd, GWL_STYLE, GetWindowLong(hwnd, GWL_STYLE) & ~WS_SYSMENU); - // Setting this in markup throws an exception at runtime ShowTitleBar = false; }