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

ContextItemCollectionOptions.ItemCursor Property

Gets or sets a cursor type for ContextItem interaction.

Namespace: DevExpress.Utils

Assembly: DevExpress.Utils.v20.2.dll

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

Declaration

public Cursor ItemCursor { get; set; }

Property Value

Type Default Description
Cursor "Arrow"

A cursor type for ContextItem interaction.

Property Paths

You can access this nested property as listed below:

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

Remarks

The code below demonstrates how to show a Hand cursor during ContextItem interaction.

using System.Windows.Forms;
// ...
pictureEdit1.Properties.ContextButtonOptions.ItemCursor = Cursors.Hand;

The image below demonstrates the result.

ItemCursor

Alternatively, you can access ItemCursor in a control’s Properties window.

PropertiesItemCursor

See Also