Paint.DefaultImageInstaller.DefaultImageInstaller C# (CSharp) Méthode

DefaultImageInstaller() public méthode

Initializes a new instance of the Paint.DefaultImageInstaller class.
public DefaultImageInstaller ( string imageDataPath, string masterImagePath, int deviceScale ) : System
imageDataPath string The path to the imageData folder
masterImagePath string Path to where all the master images are stored
deviceScale int The device scale/resolution. 1 = normal. 2 = retina.
Résultat System
        public DefaultImageInstaller(string imageDataPath, string masterImagePath, int deviceScale)
        {
            this.deviceScale = deviceScale;
            this.imageDataPath = imageDataPath;
            this.masterImagePath = masterImagePath;
        }