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

ContextItemCollectionOptions.BottomPanelPadding Property

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

Namespace: DevExpress.Utils

Assembly: DevExpress.Utils.v20.2.dll

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

Declaration

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

Property Value

Type Description
Padding

Bottom panel padding.

Property Paths

You can access this nested property as listed below:

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

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.

BottomPanelPadding

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

PropertiesBottomPanelPadding

See Also