Skip to main content
A newer version of this page is available. .

ToolbarFormControl Class

A title bar for the ToolbarForm.

Namespace: DevExpress.XtraBars.ToolbarForm

Assembly: DevExpress.XtraBars.v19.2.dll

Declaration

public class ToolbarFormControl :
    CustomLinksControl,
    ISupportInitialize,
    IAutoOpenMenuBar,
    ICustomBarControl

Remarks

ToolbarForms have no title bars themselves. Their title bars are separate ToolbarFormControl objects. If you create a Toolbar Form in code, you should create its satellite ToolbarFormControl as well.

ToolbarForm myForm = new ToolbarForm();
ToolbarFormControl tfcHeader = new ToolbarFormControl() { ToolbarForm = myForm};
myForm.Controls.Add(tfcHeader);
myForm.ToolbarFormControl = tfcHeader;

Inheritance

Object
MarshalByRefObject
Component
Control
DevExpress.XtraBars.Controls.CustomControl
DevExpress.XtraBars.Controls.CustomLinksControl
ToolbarFormControl
See Also