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

RepositoryItemBreadCrumbEdit.RootGlyph Property

Gets or sets the image used by this BreadCrumbEdit‘s root node.

Namespace: DevExpress.XtraEditors.Repository

Assembly: DevExpress.XtraEditors.v24.2.dll

NuGet Package: DevExpress.Win.Navigation

#Declaration

[DefaultValue(null)]
[DXCategory("Appearance")]
public virtual Image RootGlyph { get; set; }

#Property Value

Type Default Description
Image null

An Image that is this BreadCrumbEdit‘s root node glyph.

#Remarks

The RootGlyph property specifies a root node glyph - the only glyph that can displayed within the BreadCrumbEdit itself. Non-root node glyphs are only visible in the history or auto-complete drop-down lists. The RepositoryItemBreadCrumbEdit.ShowRootGlyph property specifies the root glyph visibility.

Alternatively, you can use the RepositoryItemBreadCrumbEdit.RootImageIndex to pick a root node glyph from the image collection, assigned to the RepositoryItemBreadCrumbEdit.Images property.

Clicking the root glyph at runtime fires the RepositoryItemBreadCrumbEdit.RootGlyphClick event.

See Also