gpt4 book ai didi

c++ - WM_NEXTDLGCTL 可以与非对话框窗口一起使用吗?

转载 作者:可可西里 更新时间:2023-11-01 15:56:57 29 4
gpt4 key购买 nike

WM_NEXTDLGCTL 的文档状态,此消息将与对话框一起使用:

Sent to a dialog box procedure to set the keyboard focus to a different control in the dialog box.

如果此消息不能与非对话框控件父项一起使用,则以通用方式对控件进行子类化将非常乏味(如 this question 所示),因为窗口过程必须调用 SetFocus或发送 WM_NEXTDLGCTL 消息,基于不太简单的上下文确定。

由于其他特定于对话框的 API 可用于非对话框窗口(例如 IsDialogMessage ),因此在此设置中也能够使用 WM_NEXTDLGCTL 感觉很自然。

问题WM_NEXTDLGCTL 可以与非对话控件父项一起使用吗?

最佳答案

WM_NEXTDLGCTL 可以与非对话控件父项一起使用吗?

我认为您不能在非对话框父窗口中使用它(至少在不更改父窗口的情况下),原因是它是在 DefDlgProc 中实现的。因此,您的其他非对话窗口必须调用它才能使此消息起作用。

这是我在 The Old New Thing: Practical Development Throughout the Evolution of Windows 中找到的引述:DefDlgProc 内部发生了什么?

As the remarks for the WM_NEXTDLGCTL message observe, the DefDlgProc function handles the WM_NEXTDLGCTL message by updating all the internal dialog manager bookkeeping, deciding which button should be the default, all that good stuff.

它是仅对话框消息的另一个原因是它(从 msdn 引用 WM_NEXTDLGCTL):

sets the default control identifier

要做到这一点,它必须发送 DM_SETDEFID,其定义为:

#define DM_SETDEFID         (WM_USER+1)

所以它是 WM_USER,因此它可能在非对话窗口上用于其他目的(Raymond Chens 的书中也提到了这个事实)。有趣的是,根据这本书 IsDialogMessage 还会将 DM_SETDEFID/DM_GETDEFID 发送到您的窗口。因此,如果您想在非对话窗口(使用对话代码)中使用类似于导航的 TAB,则必须遵守一些规则,您可以在里面阅读:What happens inside IsDialogMessage? 上面的书。这意味着要使用以下消息循环:

while (GetMessage(&msg, NULL, 0, 0)) {
if (IsDialogMessage(hwnd, &msg)) {
/* Already handled by dialog manager */
} else {
TranslateMessage(&msg);
DispatchMessage(&msg);
}
}

因此,如果您不想对父 Windows 代码进行重大更改,那么恐怕您就不走运了。

关于c++ - WM_NEXTDLGCTL 可以与非对话框窗口一起使用吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30298467/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com