怎么可以看到代码阿 很想知道楼主怎么做的
可以看看源码吗
//禁用Alt+f4键,注要把你窗口中的所有控件都做上
if ((e.KeyCode == Keys.F4) && (e.Alt == true))
{
e.Handled = true;
}
if ((e.KeyCode == Keys.Delete) && (e.Alt == true) && (e.Control == true))
{
e.Handled = true;
}
