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

ContextItemCollectionOptions.CenterPanelPadding Property

Gets or sets Padding for context items inside the center panel.

Namespace: DevExpress.Utils

Assembly: DevExpress.Utils.v20.2.dll

NuGet Packages: DevExpress.Utils, DevExpress.Wpf.Core

Declaration

[XtraSerializableProperty]
public virtual Padding CenterPanelPadding { get; set; }

Property Value

Type Description
Padding

Center panel padding.

Property Paths

You can access this nested property as listed below:

Show 49 property paths
Object Type Path to CenterPanelPadding
AccordionControl
.ContextButtonsOptions .CenterPanelPadding
TileBar
.ContextButtonOptions .CenterPanelPadding
BaseCheckedListBoxControl
.ContextButtonOptions .CenterPanelPadding
BaseDateControl
.ContextButtonOptions .CenterPanelPadding
BaseImageListBoxControl
.ContextButtonOptions .CenterPanelPadding
BaseListBoxControl
.ContextButtonOptions .CenterPanelPadding
CameraControl
.ContextButtonOptions .CenterPanelPadding
CheckedListBoxControl
.ContextButtonOptions .CenterPanelPadding
CalendarControl
.ContextButtonOptions .CenterPanelPadding
CalendarControlBase
.ContextButtonOptions .CenterPanelPadding
ImageSlider
.ContextButtonOptions .CenterPanelPadding
DateControl
.ContextButtonOptions .CenterPanelPadding
ImageListBoxControl
.ContextButtonOptions .CenterPanelPadding
ListBoxControl
.ContextButtonOptions .CenterPanelPadding
RepositoryItemBaseSpinEdit
.ContextButtonOptions .CenterPanelPadding
RepositoryItemBlobBaseEdit
.ContextButtonOptions .CenterPanelPadding
RepositoryItemBreadCrumbEdit
.ContextButtonOptions .CenterPanelPadding
RepositoryItemCalcEdit
.ContextButtonOptions .CenterPanelPadding
RepositoryItemCheckedComboBoxEdit
.ContextButtonOptions .CenterPanelPadding
RepositoryItemColorEdit
.ContextButtonOptions .CenterPanelPadding
RepositoryItemColorPickEdit
.ContextButtonOptions .CenterPanelPadding
RepositoryItemComboBox
.ContextButtonOptions .CenterPanelPadding
RepositoryItemDateEdit
.ContextButtonOptions .CenterPanelPadding
RepositoryItemDateTimeOffsetEdit
.ContextButtonOptions .CenterPanelPadding
RepositoryItemFontEdit
.ContextButtonOptions .CenterPanelPadding
RepositoryItemGridLookUpEdit
.ContextButtonOptions .CenterPanelPadding
RepositoryItemGridLookUpEditBase
.ContextButtonOptions .CenterPanelPadding
RepositoryItemImageComboBox
.ContextButtonOptions .CenterPanelPadding
RepositoryItemImageEdit
.ContextButtonOptions .CenterPanelPadding
RepositoryItemLookUpEdit
.ContextButtonOptions .CenterPanelPadding
RepositoryItemLookUpEditBase
.ContextButtonOptions .CenterPanelPadding
RepositoryItemMemoExEdit
.ContextButtonOptions .CenterPanelPadding
RepositoryItemMRUEdit
.ContextButtonOptions .CenterPanelPadding
RepositoryItemPictureEdit
.ContextButtonOptions .CenterPanelPadding
RepositoryItemPopupBase
.ContextButtonOptions .CenterPanelPadding
RepositoryItemPopupBaseAutoSearchEdit
.ContextButtonOptions .CenterPanelPadding
RepositoryItemPopupContainerEdit
.ContextButtonOptions .CenterPanelPadding
RepositoryItemPopupGalleryEdit
.ContextButtonOptions .CenterPanelPadding
RepositoryItemSearchControl
.ContextButtonOptions .CenterPanelPadding
RepositoryItemSearchLookUpEdit
.ContextButtonOptions .CenterPanelPadding
RepositoryItemSpinEdit
.ContextButtonOptions .CenterPanelPadding
RepositoryItemTimeEdit
.ContextButtonOptions .CenterPanelPadding
RepositoryItemTimeSpanEdit
.ContextButtonOptions .CenterPanelPadding
RepositoryItemTreeListLookUpEdit
.ContextButtonOptions .CenterPanelPadding
SvgImageBox
.ContextButtonOptions .CenterPanelPadding
TileControl
.ContextButtonOptions .CenterPanelPadding
TileViewOptionsKanban
.GroupHeaderContextButtonOptions .CenterPanelPadding
DateNavigator
.ContextButtonOptions .CenterPanelPadding
ResourcesCheckedListBoxControl
.ContextButtonOptions .CenterPanelPadding

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.

CenterPanelPadding

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

PropertiesCenterPanelPadding

See Also