How do I fix my OnRButtonDown() to detect right click for my dialog? (using mfc)(如何修复 OnRButtonDown() 以检测对话框的右键单击?(使用 mfc))
问题描述
现在我的代码没有检测到右键单击它的对话框.我错过了什么吗?另外,有什么重要的我应该知道的吗?检测在 mfc 中有效吗?
Right now my code isn't detecting a right click on it's dialog. Am I missing anything? Also, is there anything important I should know about how detection works in mfc?
在我的 .h 文件中包含此方法作为公共:
Inside my .h file contains this method as a public:
afx_msg void OnRButtonDown(UINT nFlags, CPoint point);
在我的 .cpp 文件中,我有这些人:
In my .cpp file I have these guys:
void CGadgetAddedDialog::OnRButtonDown(UINT nFlags, CPoint point)
{
char debugStr[1000];
sprintf_s(debugStr, "pressed on: %d, %d", point.x, point.y);
OutputDebugStringA(debugStr);
// TODO: Add your message handler code here and/or call default
CDialogEx::OnRButtonDown(nFlags, point);
}
BEGIN_MESSAGE_MAP(CGadgetAddedDialog, CDialogEx)
ON_WM_ERASEBKGND()
ON_WM_RBUTTONDOWN()
ON_WM_CONTEXTMENU()
ON_WM_CTLCOLOR()
END_MESSAGE_MAP()
推荐答案
如果用鼠标右键单击子控件,子控件会收到消息.
If you click on a child control with the right mouse key, the child control receives the message.
如果您想处理上下文菜单的鼠标右键单击,而不仅仅是使用 WM_CONTEXTMENU 的处理程序.这保证了上下文菜单键也被正确处理.如果孩子不处理,这条消息也会从孩子转移到父母.
If you want to handle the right mouse click for a context menu than just use a handler for WM_CONTEXTMENU. This guaranties that also the context menu key is handled correct. Also this message is transferred from a child to the parent if the child doesn't handle it.
这篇关于如何修复 OnRButtonDown() 以检测对话框的右键单击?(使用 mfc)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何修复 OnRButtonDown() 以检测对话框的右键单击?(使用 mfc)
基础教程推荐
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- Windows Media Foundation 录制音频 2021-01-01
- 从 std::cin 读取密码 2021-01-01
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- 使用从字符串中提取的参数调用函数 2022-01-01