ToolTipController.ImageList Property
Gets or sets the source of the images that can be displayed within tooltips.
Namespace: DevExpress.Utils
Assembly: DevExpress.Utils.v24.1.dll
NuGet Packages: DevExpress.Utils, DevExpress.Wpf.Core
Declaration
[DefaultValue(null)]
[DXCategory("Appearance")]
public virtual object ImageList { get; set; }
Property Value
Type | Default | Description |
---|---|---|
Object | null | An object that is the source of images that can be displayed within tooltips. |
Remarks
The ImageList 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.
See the ToolTipController.ImageIndex topic for information on providing images for tooltips.
See Also