CMFCPropertyPage 类

CMFCPropertyPage 类支持在属性页中显示弹出菜单。

语法

class CMFCPropertyPage : public CPropertyPage

成员

公共构造函数

名称 描述
CMFCPropertyPage::CMFCPropertyPage 构造 CMFCPropertyPage 对象。
CMFCPropertyPage::~CMFCPropertyPage 析构函数。

公共方法

名称 描述
CMFCPropertyPage::CreateObject 由框架用于创建此类类型的动态实例。
CMFCPropertyPage::GetThisClass 由框架用于获取指向与此类类型关联的 CRuntimeClass 对象的指针。
CMFCPropertyPage::OnSetActive 当用户选择页面且该页面成为活动页时,框架会调用此成员函数。 (替代 CPropertyPage::OnSetActive。)
CMFCPropertyPage::PreTranslateMessage 在将窗口消息发送到 TranslateMessageDispatchMessage Windows 函数之前,对此消息进行转换。 有关详细信息和方法语法,请参阅 CWnd::PreTranslateMessage。 (替代 CPropertyPage::PreTranslateMessage。)

备注

CMFCPropertyPage 类表示属性表的各个页,也称为选项卡对话框。

CMFCPropertyPage 类与 CMFCPropertySheet 类配合使用。 若要在属性页上使用菜单,请将 CPropertyPage 类的所有匹配项替换为 CMFCPropertyPage 类。

继承层次结构

CObject

CCmdTarget

CWnd

CDialog

CPropertyPage

CMFCPropertyPage

要求

标头:afxpropertypage.h

CMFCPropertyPage::CMFCPropertyPage

构造 CMFCPropertyPage 对象。

CMFCPropertyPage(
    UINT nIDTemplate,
    UINT nIDCaption=0);

CMFCPropertyPage(
    LPCTSTR lpszTemplateName,
    UINT nIDCaption=0);

参数

nIDTemplate
此页的模板的资源 ID。

nIDCaption
要放入此页的选项卡中的标签的资源 ID。 如果为 0,则从此页的对话框模板中获取名称。 默认值为 0。

lpszTemplateName
指向此页的模板的名称。 不能为 NULL。

返回值

备注

有关构造函数参数的详细信息,请参阅 CPropertyPage::CPropertyPage

另请参阅

层次结构图

CMFCPropertySheet 类