ContextItemCollectionOptions.CenterPanelPadding Property
Gets or sets Padding for context items inside the center panel.
Namespace: DevExpress.Utils
Assembly: DevExpress.Utils.v25.1.dll
NuGet Packages: DevExpress.Utils, DevExpress.Wpf.Core
Declaration
Property Value
| Type | Description |
|---|---|
| Padding | Center panel padding. |
Property Paths
You can access this nested property as listed below:
| Object Type | Path to CenterPanelPadding |
|---|---|
| CameraControl |
|
| CalendarControlBase |
|
| ImageSlider |
|
| RepositoryItemPictureEdit |
|
| SvgImageBox |
|
| TileControl |
|
| TileView |
|
Remarks
The code below demonstrates how to increase CenterPanelPadding above and below the RatingContextButton.
using System.Windows.Forms;
// ...
pictureEdit1.Properties.ContextButtonOptions.CenterPanelPadding = new Padding(0, 10, 0, 10);
The image below demonstrates the result.

Alternatively, you can access CenterPanelPadding in the control’s Properties window.

See Also