Skip to main content

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.v23.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.Image 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