Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TdxBarControlContainerItem Class

Used to incorporate external controls onto toolbars.

#Declaration

Delphi
TdxBarControlContainerItem = class(
    TdxBarItem
)

#Remarks

TdxBarControlContainerItem items are used to embed different external controls into toolbars. This object acts as a container for any component supported by Delphi or C++Builder. You can place a component onto a form and assign it via the item’s Control property.

Assigning the PageControl1 object to the dxBarControlContainerItem1 at design time.

The dxBarControlContainerItem1 represents the PageControl1 object at runtime.

Important

Only basic controls are eligible to be put into submenus or Ribbon controls. In other words, those controls should not have window handles.

Only one instance of an external control should be visible when running an application, therefore set the Visible property of the external control to False in order to provide faultless functionality.

See Also