Skip to main content
Bar

BarButtonItem.ImageIndex Property

Gets or sets the index of a regular icon assigned to the BarButtonItem.

Namespace: DevExpress.XtraBars

Assembly: DevExpress.XtraBars.v24.2.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

public override int ImageIndex { get; set; }

Property Value

Type Description
Int32

An Int32 value that is the index of a regular icon assigned to the BarButtonItem.

Remarks

You can assign a regular icon to the BarButtonItem either via the BarButtonItem.Glyph property, or pick an icon from the BarItem.Images collection via the ImageIndex property. If both properties are specified, the ImageIndex property is ignored.

Disabled glyphs display their BarButtonItem.GlyphDisabled instead.

Tip

You can also assign an image by its name in the collection.

// The image collection is created and populated with images at design time.
barItem.ImageOptions.Image = imageCollection1["technology_32x32"]; 
// Assign an SVG image in the SvgCollection
// barItem.ImageOptions.SvgImage = svgCollection1["technology_32x32"];

Read the following help topic for more information: Access and Use DevExpress Icons in Code.

See Also