Layout in MFC
C / C++ / MFC
2
Posts
2
Posters
0
Views
1
Watching
-
How do I layout components , to add new GUI componets , delete , re-position dynamically at runtime in MFC
-
How do I layout components , to add new GUI componets , delete , re-position dynamically at runtime in MFC
First you create GUI components (usually derived from CWnd class) such as CButton by calling their Create() method. Then you can change their position using the SetWindowPos() method.