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

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

See Also