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

IContentContainerAction Interface

In This Article

Provides base functionality for custom Navigation Bar Actions.

Namespace: DevExpress.XtraBars.Docking2010.Views.WindowsUI

Assembly: DevExpress.XtraBars.v24.2.dll

NuGet Package: DevExpress.Win.Navigation

#Declaration

public interface IContentContainerAction :
    IUIAction<IContentContainer>,
    IUIActionProperties

#Remarks

The IContentContainerAction interface provides the following properties.

  • Command property - stores an ICommand object that specifies the button’s functionality (inherited from the IUIAction interface)
  • Caption property - gets or sets a String value that is the button’s caption (inherited from the IUIActionProperties interface)
  • Description property - gets or sets a String value that is the button’s description (inherited from the IUIActionProperties interface)
  • Image property - gets or sets an Image that is the button’s icon (inherited from the IUIActionProperties interface)

Normally, you do not need to implement the IContentContainerAction interface manually. To add custom Navigation Bar Actions, please use the DelegateAction object or create your own object that implements the ContentContainerAction abstract class. See the Navigation Bars topic for details.

See Also