ImageLoader Class
Manages images used in an XAF application.
Namespace: DevExpress.ExpressApp.Utils
Assembly: DevExpress.ExpressApp.v24.1.dll
NuGet Package: DevExpress.ExpressApp
Declaration
Remarks
For general guidelines on using images in an XAF application, refer to the Add and Replace Icons help topic.
The ImageLoader class exposes methods that retrieve metadata on images used in the application. Since XAF uses images of four standard sizes, ImageLoader exposes four methods dealing with images of a particular size. The following table lists them.
Method | Descripton |
---|---|
ImageLoader.GetSmallImageInfo | Supplies metadata on an image used by ASP.NET Web Forms Property Editors. |
ImageLoader.GetImageInfo | Supplies metadata on a standard-sized image. |
ImageLoader.GetLargeImageInfo | Supplies metadata on a large image. |
ImageLoader.GetDialogImageInfo | Supplies metadata on an image used in dialog windows. |
Note
All the methods above take the case-insensitive imageName parameter.
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 ImageLoader.Instance property. The following code snippet illustrates this. The code retrieves the BO_Customer image using the GetImageInfo method.
using System.Drawing;
//...
var customer = ImageLoader.Instance.GetImageInfo("BO_Customer").Image;