mirror of
https://github.com/KillzXGaming/Switch-Toolbox
synced 2024-11-10 07:04:36 +00:00
55 lines
1.5 KiB
C#
55 lines
1.5 KiB
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Runtime.InteropServices;
|
|||
|
using System.Windows.Forms;
|
|||
|
using System.Windows.Threading;
|
|||
|
using System.Windows;
|
|||
|
using System.Windows.Interop;
|
|||
|
|
|||
|
namespace Switch_Toolbox.Library.Forms
|
|||
|
{
|
|||
|
public static class NoneBlockingDialog
|
|||
|
{
|
|||
|
public static DialogResult ShowDialogNonBlocking(this Form window, Form ownder)
|
|||
|
{
|
|||
|
var frame = new DispatcherFrame();
|
|||
|
|
|||
|
void closeHandler(object sender, EventArgs args)
|
|||
|
{
|
|||
|
frame.Continue = false;
|
|||
|
}
|
|||
|
|
|||
|
try
|
|||
|
{
|
|||
|
SetNativeEnabled(ownder.Handle, false);
|
|||
|
window.Closed += closeHandler;
|
|||
|
window.Show();
|
|||
|
|
|||
|
Dispatcher.PushFrame(frame);
|
|||
|
}
|
|||
|
finally
|
|||
|
{
|
|||
|
window.Closed -= closeHandler;
|
|||
|
SetNativeEnabled(ownder.Handle, true);
|
|||
|
}
|
|||
|
return window.DialogResult;
|
|||
|
}
|
|||
|
|
|||
|
const int GWL_STYLE = -16;
|
|||
|
const int WS_DISABLED = 0x08000000;
|
|||
|
|
|||
|
[DllImport("user32.dll")]
|
|||
|
static extern int GetWindowLong(IntPtr hWnd, int nIndex);
|
|||
|
|
|||
|
[DllImport("user32.dll")]
|
|||
|
static extern int SetWindowLong(IntPtr hWnd, int nIndex, int dwNewLong);
|
|||
|
|
|||
|
static void SetNativeEnabled(IntPtr hWnd, bool enabled)
|
|||
|
{
|
|||
|
SetWindowLong(hWnd, GWL_STYLE, GetWindowLong(hWnd, GWL_STYLE) & ~WS_DISABLED | (enabled ? 0 : WS_DISABLED));
|
|||
|
}
|
|||
|
}
|
|||
|
}
|