如何在 C# 应用程序 中禁用ALT+应用程序范围的使用?F4
在我的应用程序中,我有很多 WinForms,我想禁用使用ALT+关闭表单的功能F4。不过,用户应该能够使用表单的“X”关闭表单。
同样,这不仅仅是一种形式。我正在寻找一种方法,因此ALT+F4对整个应用程序都禁用,并且不适用于任何表单。可能吗?
您可以在主启动方法中放置这样的内容:
namespace WindowsFormsApplication1
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.AddMessageFilter(new AltF4Filter()); // Add a message filter
Application.Run(new Form1());
}
}
public class AltF4Filter : IMessageFilter
{
public bool PreFilterMessage(ref Message m)
{
const int WM_SYSKEYDOWN = 0x0104;
if (m.Msg == WM_SYSKEYDOWN)
{
bool alt = ((int)m.LParam & 0x20000000) != 0;
if (alt && (m.WParam == new IntPtr((int)Keys.F4)))
return true; // eat it!
}
return false;
}
}
}