ImageLoader.Instance Property
Provides access to the ImageLoader instance.
Namespace: DevExpress.ExpressApp.Utils
Assembly: DevExpress.ExpressApp.v24.1.dll
NuGet Package: DevExpress.ExpressApp
Declaration
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;
//...
var customer = ImageLoader.Instance.GetImageInfo("BO_Customer").Image;
See Also