如何在属性表中添加标签

问题描述:

如何将文本添加到属性表中

How can I add a Text to the property sheet

将其拖到设计视图中的属性表上.这使其成为该控件的子级,因此它仅显示在该页面上.
Drag it onto the property sheet in the design view. That makes it a child of that control, so it appears on that page only.


您可以将标题传递给构造函数或
通过使用SetTitle()成员函数.

CPropSheetDlg propSheet(L"PropertySheet Example");
propSheet.SetTitle(L新标题");

:)
You can pass the title to the constructor or
by using the SetTitle() Member function.

CPropSheetDlg propSheet(L"PropertySheet Example");
propSheet.SetTitle(L"New Title");

:)


我不想设置属性表的标题.我需要在工作表的底部添加一个标签.
I dont want to set the title of the property sheet. I need to add a label at the bottom of the sheet.