不使用资源文件的 Windows API 对话框

2022-01-15 00:00:00 dialog winapi c++

我正在尝试使用 C++ 和 Windows API 创建一个对话框,但我不希望在资源文件中定义该对话框.我在网上找不到任何好的东西,而且我读过的例子似乎都没有以编程方式定义对话框.

I'm trying to create a dialog box using C++ and the windows API, but I don't want the dialog defined in a resource file. I can't find anything good on this on the web, and none of the examples I've read seem to define the dialog programmatically.

我该怎么做?

一个简单的例子就可以了.我还没有做任何复杂的事情.

A simple example is fine. I'm not doing anything complicated with it yet.

推荐答案

Raymond Chen 写了几篇关于对话管理器的帖子:

Raymond Chen wrote a few posts about the dialog manager:

  • 对话管理器,第 1 部分:热身
  • 对话管理器,第 2 部分:创建框架窗口
  • 对话框管理器,第 3 部分:创建控件
  • 对话管理器,第 4 部分:对话循环
  • 对话框管理器,第 5 部分:转换非模态对话框到模态
  • 对话管理器,第 6 部分:消息循环中的微妙之处
  • 对话管理器,第 7 部分:消息循环中的更多细节
  • 对话框管理器,第 8 部分:对话框中的自定义导航
  • 对话框管理器,第 9 部分:对话框中的自定义加速键

相关文章