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.GetGroupImage Event

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

Namespace: DevExpress.XtraToolbox

Assembly: DevExpress.XtraBars.v24.2.dll

NuGet Package: DevExpress.Win.Navigation

#Declaration

[DXCategory("Events")]
public event ToolboxGetGroupImageEventHandler GetGroupImage

#Event Data

The GetGroupImage event's data class is DevExpress.XtraToolbox.ToolboxGetGroupImageEventArgs.

#Remarks

You can specify the ToolboxGroup icon using the ToolboxElementBase.ImageOptions property. If the icon is not specified for a particular group using this property, the GetGroupImage event fires when the group is about to displayed for the first time and allows you to provide an icon. The ToolboxGetItemImageEventArgs.Item property allows you to determine the group being processed. The BestImageSize property returns the best suitable icon size. Use the Image property to specify an icon for the group.

See Also