C#,winform中如何屏蔽右上角的X关闭按钮

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C#,winform中如何屏蔽右上角的X关闭按钮相关的知识,希望对你有一定的参考价值。

实际上发出问题后两分钟我就找到答案了,呵呵
第一种方法就是你们说的那样,用法:添加引用using System.Runtime.InteropServices,在窗体的load事件中引用方法CloseButtonEnable();
此外另一种方法(实现功能屏蔽,但可以正常显示):protected override void WndProc(ref Message m)
const int WM_SYSCOMMAND = 0x0112;
const int SC_CLOSE = 0xF060;
if (m.Msg == WM_SYSCOMMAND && (int)m.WParam == SC_CLOSE)
return;
base.WndProc(ref m);
用法:直接将代码放到窗体的cs文件中就可以了
不过,还是谢谢你们的热心啊

参考技术A 调用Windows API试一下
[DllImport("user32.dll")]
internal static extern IntPtr GetSystemMenu(IntPtr hwnd,bool bRevert);

[DllImport("user32.dll")]
internal static extern int GetMenuItemCount(IntPtr hMenu);

[DllImport("user32.dll")]
internal static extern int RemoveMenu(IntPtr hMenu,int uPosition,int uFlags);

/// <summary>
/// 窗体的关闭按钮失效
/// </summary>
protected void CloseButtonEnable()
// 默认窗口去除关闭按钮
const int MF_BYPOSITION = 0x00000400;

IntPtr hWindow = this.Handle;
IntPtr hMenu = GetSystemMenu(hWindow,false);
int count = GetMenuItemCount(hMenu);
RemoveMenu(hMenu,count - 1,MF_BYPOSITION);
RemoveMenu(hMenu,count - 2,MF_BYPOSITION);
本回答被提问者采纳
参考技术B using System.Runtime.InteropServices;

public partial class Form1 : Form

[DllImport("USER32.DLL")]
private static extern IntPtr GetSystemMenu(IntPtr hWnd, UInt32 bRevert);
[DllImport("USER32.DLL")]
private static extern UInt32 RemoveMenu(IntPtr hMenu, UInt32 nPosition, UInt32 wFlags);
private const UInt32 SC_CLOSE = 0x0000F060;
private const UInt32 MF_BYCOMMAND = 0x00000000;

public Form1()

InitializeComponent();
IntPtr hMenu = GetSystemMenu(this.Handle, 0);
RemoveMenu(hMenu, SC_CLOSE, MF_BYCOMMAND);
参考技术C 能用属性解决为何写这么多代码?设置controlbox为false就行了

模态对话框,点击右上角的X按钮关闭不了窗口么

取消按钮属性默认ID是IDCANCEL,你只要把这个ID改了,自己再起个ID名就可以了。或者是你删了加一个按钮 参考技术A 重载窗口WM_CLOSE消息,在消息响应函数中:void CDialog1::OnClose() // TODO: Add your message handler code here and/or call default ShowWindow(SW_HIDE); //CDialog::OnClose();需要注意的是,标准对话框程序是模态调用的,模态窗口没有隐藏的概念,因此必须改成非模态创建才可以,主对话框修改在InitInstance入口中。

以上是关于C#,winform中如何屏蔽右上角的X关闭按钮的主要内容,如果未能解决你的问题,请参考以下文章

C# winForm程序窗体右上角X关闭按钮点击后 弹出提示文本 只有确定按钮点击后程序无法关闭

WinForm中如何判断关闭事件来源于用户点击右上角的“关闭”按钮

C#中winform中有啥办法区分Close()和点击窗体右上角关闭按钮来关闭窗体

WinForm中的几个实用技巧汇总

C#中 怎样在Winform窗体 右上角最小化左边添加一个按钮 ?像Q2013登录界面那种设置的按钮?

单击红色关闭 (x) 按钮和调用 .Close() 有啥区别?