RepositoryItemImageComboBox.SmallImages Property
Gets or sets the source of small images.
Namespace: DevExpress.XtraEditors.Repository
Assembly: DevExpress.XtraEditors.v22.2.dll
NuGet Package: DevExpress.Win.Navigation
Declaration
[DefaultValue(null)]
[DXCategory("Appearance")]
public virtual object SmallImages { get; set; }
Property Value
Type | Default | Description |
---|---|---|
Object | null | An object that is an image collection providing small 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 RepositoryItemImageComboBox.LargeImages collection, while small images are obtained from the SmallImages.
If both RepositoryItemImageComboBox.LargeImages and 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 SmallImages property accepts the following image collections:
- ImageCollection - Supports image transparency.
- SharedImageCollection - Supports image transparency. Allows you to share images between controls within multiple forms.
- SvgImageCollection - Stores vector icons that can scale without losing their quality on high resolution devices.
- ImageList.