Class WindowMessageEventArgs
Event arguments for the WindowMessageReceived event.
Inheritance
System.Object
System.EventArgs
WindowMessageEventArgs
Inherited Members
System.EventArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: WinUIEx.Messaging
Assembly: WinUIEx.dll
Syntax
public sealed class WindowMessageEventArgs : EventArgs
Properties
| Improve this Doc View SourceHandled
Indicates whether this message was handled and the Result value should be returned.
Declaration
public bool Handled { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Remarks
True
is the message was handled and the Result should be returned, otherwise false
and continue processing this message by other subsclasses.
See Also
| Improve this Doc View SourceMessage
The Windows WM Message
Declaration
public Message Message { get; }
Property Value
Type | Description |
---|---|
Message |
Result
The result after processing the message. Use this to set the return result, after also setting Handled to true
.
Declaration
public nint Result { get; set; }
Property Value
Type | Description |
---|---|
System.IntPtr |