Skip to main content
Bar

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

BarBaseButtonItem Class

Serves as a base class for classes that implement functionality for button items.

Namespace: DevExpress.XtraBars

Assembly: DevExpress.XtraBars.v24.2.dll

NuGet Package: DevExpress.Win.Navigation

#Declaration

public class BarBaseButtonItem :
    BarItem,
    ISupportUICommand

The following members return BarBaseButtonItem objects:

#Remarks

A button item can serve as a regular button or a check button. A regular button is depressed when it’s clicked and then immediately raised when the mouse cursor is released. A check button is depressed on a click and raised only when it’s clicked again.

Regular buttons are implemented by BarButtonItem and BarLargeButtonItem objects which have their BarBaseButtonItem.ButtonStyle properties set to BarButtonStyle.Default.

Check buttons are implemented by BarCheckItem objects.

See Also