Close Button on Title Bar in MFC(MFC 中标题栏上的关闭按钮)
问题描述
在 Vc++ 6.0 Dialog Based MFC 应用程序中:我不希望我的用户通过按下窗口本身右上角的按钮 [X] 以及 (Alt+F4) 来关闭窗口.我想显示一个消息框(你真的要关闭应用程序吗");如果用户单击确定"按钮,则必须关闭应用程序,否则如果用户单击取消"按钮,则不得关闭应用程序.
In Vc++ 6.0 Dialog Based MFC application: I do not want my user close the window by pressing the button [X] in the top-right side of the window itself and also (Alt+F4). I want to display a messageBox ("Do you really want to close the application"); if the user clicks the OK button then the application has to close, else if user clicks the CANCEL button then the application must not be closed.
推荐答案
处理 WM_SYSCOMMAND
消息并在其中执行类似的操作.
Handle the WM_SYSCOMMAND
message and do something like this in it.
void CMyApp::OnSysCommand(UINT nID, LPARAM lParam)
{
if(nID == SC_CLOSE)
{
if(MessageBox(_T("Really"), _T("What"), MB_YESNO) == IDYES);
//Do What you want here.
else
//Do something else
}
else
{
CDialog::OnSysCommand(nID, lParam);
}
}
以下是如何将 WM_SYSCOMMAND 处理程序添加到您的代码:
转到类视图.如果它是基于对话框的应用程序,请右键单击您的对话框类;如果它是 SDI/MDI 应用程序,请右键单击您的大型机类.点击属性.
Go to ClassView. Right click your dialog class if it is a dialog based application OR your mainframe class if it is a SDI/MDI Application. Click Properties.
在属性窗口中,单击消息按钮.向下滚动到 WM_SYSCOMMAND 并在下拉组合中双击以添加处理程序.
In Properties Window, click on the Messages button. Scroll down to WM_SYSCOMMAND and on drop-down combo double-click to add the handler.
或
您也可以通过在消息映射中添加条目来手动执行此操作.并分别在 .h/.cpp 中添加声明/定义.
You can do it manually as well by adding an entry in the message map. And adding declaration/definition in .h/.cpp respectively.
这篇关于MFC 中标题栏上的关闭按钮的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:MFC 中标题栏上的关闭按钮
基础教程推荐
- 从 std::cin 读取密码 2021-01-01
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- 使用从字符串中提取的参数调用函数 2022-01-01
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- Windows Media Foundation 录制音频 2021-01-01