Skip to main content
All docs
V25.1
  • ContextItemCollection Class

    Represents a collection of ContextItem objects displayed in a control.

    Namespace: DevExpress.Utils

    Assembly: DevExpress.Utils.v25.1.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