Difference between CDialog and CDialogEx(CDialog 和 CDialogEx 的区别)
问题描述
CDialog 和 CDialogEx 有什么区别?我决定使用 CDialog,因为如果 Dlg 派生自 CDialogEx,我无法将 m_pMainWnd 分配给 Dlg.
What is the difference between CDialog and CDialogEx? I decided to use CDialog because I can't assign m_pMainWnd to Dlg if Dlg is derived from CDialogEx.
BOOL CPreparationApp::InitInstance()
{
MyClass2 Dlg; //derived from CDialog
m_pMainWnd = &Dlg;
Dlg.DoModal();
return TRUE;
}
不使用表单向导提供的 CDialogEx 可能会解决哪些问题?
What kind of problems I might fave by not using CDialogEx like form wizard was offering?
如何分配从 CDialogEx 派生的 m_pMainWnd 变量?
How to assign m_pMainWnd variable derived from CDialogEx?
推荐答案
CDialogEX 是从 CDialog 派生的,因此,将 m_pMainWnd 设置为 CDialogEx 派生对象应该没有问题.CDialogEx 提供了设置对话框的背景颜色或图像的能力.
CDialogEX is derived from CDialog, so, setting m_pMainWnd to a CDialogEx derived object should not be a problem. CDialogEx provides the abillity to set the background color or image of the dialog.
这篇关于CDialog 和 CDialogEx 的区别的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:CDialog 和 CDialogEx 的区别
基础教程推荐
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- Windows Media Foundation 录制音频 2021-01-01
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- 从 std::cin 读取密码 2021-01-01
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- 使用从字符串中提取的参数调用函数 2022-01-01
