CDialogBar

The CDialogBar class provides the functionality of a Windows modeless dialog box in a control bar. A dialog bar resembles a dialog box in that it contains standard Windows controls that the user can tab between. Another similarity is that you create a dialog template to represent the dialog bar.

Creating and using a dialog bar is similar to creating and using a CFormView object. First, use the dialog editor (described in the Visual C++ User's Guide) to define a dialog template with the style WS_CHILD and no other style. The template must not have the style WS_VISIBLE. In your application code, call the constructor to construct the CDialogBar object, then call Create to create the dialog-bar window and attach it to the CDialogBar object.

For more information on CDialogBar, see the article Dialog Bar Topics in Visual C++ Programmer's Guide and Technical Note 31, Control Bars.

#include <afxext.h>

Class MembersBase ClassHierarchy Chart

Sample   MFC Sample CTRLBARS

See Also   CFormView, CControlBar