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

ButtonEdit.ActualButtons Property

Returns the collection of buttons including the default button (if it exists).

Namespace: DevExpress.Xpf.Editors

Assembly: DevExpress.Xpf.Core.v24.2.dll

NuGet Package: DevExpress.Wpf.Core

#Declaration

[Browsable(false)]
public IList<ButtonInfoBase> ActualButtons { get; }

#Property Value

Type Description
IList<ButtonInfoBase>

The collection of editor buttons.

#Remarks

The ActualButtons collection allows you to access individual buttons displayed within the editor. To add/remove buttons, use the ButtonEdit.Buttons property. To show/hide the button(s) displayed by default, use the ButtonEdit.AllowDefaultButton property.

Note

When the NullValueButtonPlacement property is set to EditBox, the null value button instance is automatically added to the editor’s ActualButtons collection.

See Also