Skip to main content
A newer version of this page is available. .

ImageLoader.Instance Property

Provides access to the ImageLoader instance.

Namespace: DevExpress.ExpressApp.Utils

Assembly: DevExpress.ExpressApp.v18.2.dll

Declaration

public static ImageLoader Instance { get; }

Property Value

Type Description
ImageLoader

An ImageLoader object representing the ImageLoader instance.

Remarks

ImageLoader is a singleton. So, only a single instance of the ImageLoader class can be instantiated in an application. To invoke ImageLoader‘s instance methods, you need to use the ImageLoader instance, accessible via the Instance property. The following code snippet illustrates this. The code retrieves the BO_Customer image using the ImageLoader.GetImageInfo method.

using System.Drawing;
//...
Image customer = ImageLoader.Instance.GetImageInfo("BO_Customer").Image;
See Also