CPropertySheet::SetTitle
指定属性表的声明(在框架窗口的标题栏显示的文本)。
void SetTitle(
LPCTSTR lpszText,
UINT nStyle = 0
);
参数
nStyle
指定属性表标题的样式。必须指定该样式在0或作为 PSH_PROPTITLE。如果该样式设置为 PSH_PROPTITLE,单词“属性”中为声明指定的文本之后。例如,调用 SetTitle(“简单”, PSH_PROPTITLE)会导致“简单属性的属性表声明”。lpszText
指向作为该声明将使用的文本在属性表的标题栏。
备注
默认情况下,属性表在属性表构造函数使用声明参数。
示例
// Declare a CPropertySheet object with a caption "Simple PropertySheet".
CPropertySheet dlgPropertySheet(_T("Simple PropertySheet"));
// Add three pages to the CPropertySheet object. CStylePage, CColorPage,
// and CShapePage are CPropertyPage-derived classes created
// by the Add Class wizard.
CStylePage stylePage;
CColorPage colorPage;
CShapePage shapePage;
dlgPropertySheet.AddPage(&stylePage);
dlgPropertySheet.AddPage(&colorPage);
dlgPropertySheet.AddPage(&shapePage);
// Change the caption of the CPropertySheet object
// from "Simple PropertySheet" to "Simple Properties".
dlgPropertySheet.SetTitle(_T("Simple"), PSH_PROPTITLE);
// Show the CPropertySheet object as MODAL.
dlgPropertySheet.DoModal();
要求
Header: afxdlgs.h