Skip to content

Latest commit

 

History

History
16 lines (12 loc) · 351 Bytes

File metadata and controls

16 lines (12 loc) · 351 Bytes

Window 1.0.2

Simple message-only window for receiving windows messages

Example:

using var window = new SimpleWindow();

Debug.WriteLine($"Window name:{window.Name} hWnd:{window.Handle}");

window.MessageReceived += (o, a) =>
{
   a.IsHandled = true;
   Debug.WriteLine($"Message:{a.Message} WParam:{a.WParam} LParam:{a.LParam}");
};