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

ContextItemCollectionOptions.NearPanelPadding Property

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

Namespace: DevExpress.Utils

Assembly: DevExpress.Utils.v20.2.dll

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

Declaration

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

Property Value

Type Description
Padding

Near panel padding.

Property Paths

You can access this nested property as listed below:

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

Remarks

The code below demonstrates how to increase NearPanelPadding to the left and to the right of the RatingContextButton.

using System.Windows.Forms;
// ...
pictureEdit1.Properties.ContextButtonOptions.NearPanelPadding = new Padding(10, 0, 10, 0);

The image below demonstrates the result.

BottomPanelPadding

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

PropertiesNearPanelPadding

See Also