Ask for help : About PropertyPage
C / C++ / MFC
2
Posts
2
Posters
0
Views
1
Watching
-
Hello, everyone! I want to add a PropertyPage into a dialog, not PropertySheet, How can I do? Thanks a lot!
-
Hello, everyone! I want to add a PropertyPage into a dialog, not PropertySheet, How can I do? Thanks a lot!
I believe a page is just another dialog with its child property set to
TRUE
. If you just want to add a child to the main dialog, then create the child usingCreate(IDD_DIALOG1, this);
andShowWindow(SW_SHOW);
Of course without title bar and border. Then position the dialog to any position you like on the parent usingMoveWindow()
, orSetWindowPos()
. this is this.