Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

ToolboxControl.GetItemImage Event

Fires when a ToolboxItem is about to displayed for the first time and allows you to provide a custom item icon.

Namespace: DevExpress.XtraToolbox

Assembly: DevExpress.XtraBars.v24.2.dll

NuGet Package: DevExpress.Win.Navigation

#Declaration

[DXCategory("Events")]
public event ToolboxGetItemImageEventHandler GetItemImage

#Event Data

The GetItemImage event's data class is DevExpress.XtraToolbox.ToolboxGetItemImageEventArgs.

#Remarks

You can specify the ToolboxItem icon using the ToolboxElementBase.ImageOptions property. If the icon is not specified for a particular item using this property, the GetItemImage event fires when the item is about to displayed for the first time and allows you to provide an icon. The ToolboxGetItemImageEventArgs.Item property allows you to determine the item being processed. The BestImageSize property returns the best suitable icon size, which is the maximum icon size of the icons already provided for other items. The Image property allows you to specify an icon for the item being processed.

See Also