Removed PInvoke code that hid the close button.

pull/702/head
RedShirtMB Mark Linton redshirt linton 12 years ago
parent a344d2066a
commit 1b45cd4a15

@ -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
/// </summary>
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<TaskProgress> 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;
}

Loading…
Cancel
Save