ResourceManagerRequestedEventArgs.CustomResourceManager Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets the custom IResourceManager instance to be used by WinUI to resolve MRT resources for the current thread.
public:
property IResourceManager ^ CustomResourceManager { IResourceManager ^ get(); void set(IResourceManager ^ value); };
IResourceManager CustomResourceManager();
void CustomResourceManager(IResourceManager value);
public IResourceManager CustomResourceManager { get; set; }
var iResourceManager = resourceManagerRequestedEventArgs.customResourceManager;
resourceManagerRequestedEventArgs.customResourceManager = iResourceManager;
Public Property CustomResourceManager As IResourceManager
Property Value
A custom IResourceManager instance to be used by WinUI to resolve MRT resources for the current thread, or null to use the default ResourceManager. The default is null.
Remarks
If you leave the value null then the default ResourceManager created by the framework is used.