Table of Contents

Class BitmapLoader

Namespace
Splat
Assembly
Splat.Drawing.dll

Provides access to the current bitmap loader used for loading bitmap images within the application.

public static class BitmapLoader
Inheritance
BitmapLoader

Remarks

The bitmap loader is responsible for resolving and loading bitmap resources. The default implementation is obtained from the application's dependency resolver. This class is typically used to configure or retrieve the global bitmap loader instance. Changing the current loader affects all subsequent bitmap loading operations that rely on this static context.

Properties

Current

Gets or sets the current default bitmap loader instance used by the application.

public static IBitmapLoader Current { get; set; }

Property Value

IBitmapLoader

Remarks

This property provides access to the global bitmap loader implementation. Setting this property replaces the current default loader for all subsequent bitmap loading operations. Typically, this is configured during application startup and should not be changed at runtime unless reconfiguring the dependency resolver.