WindowActivatedEventArgs.Handled 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.
Specifies the property that gets or sets whether the window activation event was handled.
public:
property bool Handled { bool get(); void set(bool value); };
bool Handled();
void Handled(bool value);
public bool Handled { get; set; }
var boolean = windowActivatedEventArgs.handled;
windowActivatedEventArgs.handled = boolean;
Public Property Handled As Boolean
Property Value
Boolean
bool
True if the window activation event has been handled by the appropriate delegate; false if it has not.