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

ImageLoader.UseSvgImages Property

Enables SVG images in WinForms applications.

Namespace: DevExpress.ExpressApp.Utils

Assembly: DevExpress.ExpressApp.v18.2.dll

Declaration

public bool UseSvgImages { get; set; }

Property Value

Type Description
Boolean

true, if the SVG images are enabled for a WinForms application; otherwise, false.

Remarks

The Solution Wizard enables SVG images for all new XAF WinForms applications. If you need to use PNG images instead, set this property to false.

If an existing XAF application was created in v18.1 or earlier, it uses PNG images. To replace them with new SVG images, do the following:

  • Check that your application uses new templates. The UseOldTemplates article demonstrates how to verify this. Old templates do not support SVG images.

  • Set the UseSvgImages property to true in the Program.cs(vb) file:

    public class Program {
      public static void Main(string[] arguments) {
        // ...
        MyApplication winApplication = new MyApplication();
        DevExpress.ExpressApp.Utils.ImageLoader.Instance.UseSvgImages = true;
        // ...
      }
    }
    

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the UseSvgImages property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also