| MFC Tutorial Part 5-Dialog Boxes in MFC from CoderSource.net | | Dialog Box handling is done using CDialog class in MFC. CDialog is a CWnd derived class with some extra facilities for dialog handling. The initialization of the dialog is done using an over-ridable function OnInitDialog. The dialogs are closed by calling the function EndDialog. The dialogs can accommodate a lot of controls like an Edit controls, static controls, list boxes, combo boxes, progress bars, list views, tree views and many more.
|