ContextItemCollection Class
Represents a collection of ContextItem objects displayed in a control.
Namespace: DevExpress.Utils
Assembly: DevExpress.Utils.v24.2.dll
Declaration
public class ContextItemCollection :
CollectionBase,
ICloneable,
IEnumerable<ContextItem>,
IEnumerable
Related API Members
The following members return ContextItemCollection objects:
Remarks
The ContextItemCollection property represents all ContextItem objects displayed in a control.
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.
Click the ellipsis button to invoke the ContextItemCollection editor.
Inheritance
Object
CollectionBase
ContextItemCollection
See Also