Skip to main content
A newer version of this page is available. .

RepositoryItemPictureEdit.ContextButtons Property

Provides access to the collection of context buttons displayed in the PictureEdit control.

Namespace: DevExpress.XtraEditors.Repository

Assembly: DevExpress.XtraEditors.v19.2.dll

Declaration

[DXCategory("Context Buttons")]
public ContextItemCollection ContextButtons { get; }

Property Value

Type Description
DevExpress.Utils.ContextItemCollection

A ContextItemCollection object that represents the collection of context buttons displayed in the PictureEdit control.

Remarks

The ContextButtons property provides access to the collection of context buttons that are displayed in the PictureEdit control. For details, see the ContextItem class, which is the base class for the context buttons.

The figure below shows the PictureEdit control that displays the context buttons.

ContextButtons_PictureEdit

At design time, you can manage the context button collection and specify button properties using the Context Buttons designer. To invoke this designer, click the ellipsis button of the ContextButtons property in the Properties window. See the figure below.

ContextButtonsCollectionEditor

To respond to clicks on context buttons in a centralized way, handle the RepositoryItemPictureEdit.ContextButtonClick event. The Item property of the ContextItemClickEventArgs object passed to the event handler as a parameter, allows you to determine the button being clicked.

The RepositoryItemPictureEdit.ContextButtonOptions property provides access to the settings applied to the context buttons and the panels that contain them. For instance, you can specify the indent between the buttons, the background color of each panel, animation used to show and hide the panels, and the padding around the buttons.

See Also