Skip to main content

RepositoryItemImageComboBox.LargeImages Property

Gets or sets the source of large images.

Namespace: DevExpress.XtraEditors.Repository

Assembly: DevExpress.XtraEditors.v23.2.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

[DefaultValue(null)]
[DXCategory("Appearance")]
public object LargeImages { get; set; }

Property Value

Type Default Description
Object null

An object that is an image collection providing large images for the editor’s items.

Remarks

Each item can be associated with a small and/or large image from an image collection(s). Large images are obtained from the LargeImages collection, while small images are obtained from the RepositoryItemImageComboBox.SmallImages.

If both LargeImages and RepositoryItemImageComboBox.SmallImages specify non-null values, items are represented by small images in the edit box and large images in the dropdown. If only one of these properties is assigned, the editor uses images from the corresponding list to display items in both places. If neither property is assigned, items are only represented by their captions.

The LargeImages property accepts the following image collections:

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the LargeImages property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also