Show / Hide Table of Contents

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 Source

Handled

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
Result
| Improve this Doc View Source

Message

The Windows WM Message

Declaration
public Message Message { get; }
Property Value
Type Description
Message
| Improve this Doc View Source

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
See Also
Handled
  • Improve this Doc
  • View Source
In This Article
Back to top Generated by DocFX