Version

MissingResourceWarning Event

Invoked when the name of a resource which doesn't exist is used and AutoAddNewResources is False.
Syntax
'Declaration
 
Public Event MissingResourceWarning As EventHandler(Of MissingResourceWarningEventArgs)
public event EventHandler<MissingResourceWarningEventArgs> MissingResourceWarning
Event Data

The event handler receives an argument of type MissingResourceWarningEventArgs containing data related to this event. The following MissingResourceWarningEventArgs properties provide information specific to this event.

PropertyDescription
Action Returns or sets the action which should be used to resolve the warning.
Resource Returns or sets the ProjectResource to use in place of the missing resource if Action is set to UseResource.
ResourceName Returns the name of the missing resource.
Remarks

While the event is being fired, the task on which the resource name is being used will be locked and cannot be modified.

Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also