In Windows Forms, I\'d just override WndProc, and start handling messages as they came in.
Can someone show me an example of how to achieve the same thi
There are ways to handle messages with a WndProc in WPF (e.g. using a HwndSource, etc.), but generally those techniques are reserved for interop with messages that can't directly be handled through WPF. Most WPF controls aren't even windows in the Win32 (and by extension Windows.Forms) sense, so they won't have WndProcs.