如何在C#应用程序中禁用 ALT + F4 应用程序范围?
在我的应用程序中,我有很多WinForms,我想禁用使用 ALT + F4 关闭表单的功能。用户应该能够使用表单的“X”关闭表单。
同样,这不仅仅适用于一种形式。我正在寻找一种方法,因此对于整个应用程序禁用 ALT + F4 ,并且不适用于任何表单。有可能吗?
答案 0 :(得分:5)
你可以在主要的启动方法中加入这样的东西:
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;
}
}
}