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

ContextItemCollection Class

Represents a collection of ContextItem objects displayed in a control.

Namespace: DevExpress.Utils

Assembly: DevExpress.Utils.v24.2.dll

NuGet Packages: DevExpress.Utils, DevExpress.Wpf.Core

#Declaration

public class ContextItemCollection :
    CollectionBase,
    ICloneable,
    IEnumerable<ContextItem>,
    IEnumerable

#Remarks

The ContextItemCollection property represents all ContextItem objects displayed in a control.

ContextItems

You can get and manipulate a control’s ContextItemCollection in code - from the control’s repository item. The code below demonstrates how to add a new ContextButton to the collection.

using DevExpress.Utils;
// ...
pictureEdit1.Properties.ContextButtons.Add(new ContextButton());

Altrnatively, you can access the control’s ContextButtons property in the Properties window.

ContextItemCollection

Click the ellipsis button to invoke the ContextItemCollection editor.

ContextItemCollection

#Inheritance

See Also