Click here to Skip to main content
15,881,852 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
How can I add a Text to the property sheet
Posted

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.
 
Share this answer
 
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");

:)
 
Share this answer
 
I dont want to set the title of the property sheet. I need to add a label at the bottom of the sheet.
 
Share this answer
 
You could make your own derivation of CPropertySheet,

to place (create) any additional controls (labels) at its OnInitDialog()

and destroy them at its OnDestroy() :)
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900