up vote 19 down vote favorite
9
share [g+] share [fb]

Finding WPF a steep learning curve.

In good ol' 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 thing in WPF?

link|improve this question
feedback

9 Answers

up vote 14 down vote accepted

Actually, as far as I understand such a thing is indeed possible in WPF using HwndSource and HwndSourceHook. See this thread on MSDN as an example. (The code posted works fine - the question is about something slightly specialised.)

Now, I'm not quite sure why you'd want to handle Windows Messaging messages in a WPF application (unless it's the most obvious form of interop for working with another WinForms app). The design ideology and the nature of the API is very different in WPF from WinForms, so I would suggest you just familiarise yourself with WPF more to see exactly why there is no equivalent of WndProc.

link|improve this answer
4  
Well, USB Device (dis)connect events seem to be coming over this message loop, so it's not a bad thing to know how to hook up from WPF – flq Mar 14 '11 at 12:46
feedback

You can do this via the System.Windows.Interop namespace which contains a class named HwndSource.

Example of using this

using System;
using System.Windows;
using System.Windows.Interop;

namespace WpfApplication1
{
    public partial class Window1 : Window
    {
        public Window1()
        {
            InitializeComponent();
        }

        protected override void OnSourceInitialized(EventArgs e)
        {
            base.OnSourceInitialized(e);
            HwndSource source = PresentationSource.FromVisual(this) as HwndSource;
            source.AddHook(WndProc);
        }

        private IntPtr WndProc(IntPtr hwnd, int msg, IntPtr wParam, IntPtr lParam, ref bool handled)
        {
            // Handle messages...

            return IntPtr.Zero;
        }
    }
}

Completely taken from the excellent blog post: Using a custom WndProc in WPF apps by Steve Rands (note, link is no longer valid)

This site is down now but you can see it from the Wayback engine: http://web.archive.org/web/20091019124817/http://www.steverands.com/2009/03/19/custom-wndproc-wpf-apps/

link|improve this answer
The link is broken. Could you please fix it? – Martin Jan 26 '11 at 17:15
@Martin, that is because Steve Rand's website no longer exists. The only fix I can think of is to remove it. I think it still adds value if the site returns in the future so I am not removing it - but if you disagree feel free to edit. – Robert MacLean Jan 27 '11 at 6:49
feedback
HwndSource src = HwndSource.FromHwnd(new WindowInteropHelper(this).Handle);
src.AddHook(new HwndSourceHook(WndProc));


.......


public IntPtr WndProc(IntPtr hwnd, int msg, IntPtr wParam, IntPtr lParam, ref bool handled)
{

  if(msg == THEMESSAGEIMLOOKINGFOR)
    {
      //Do something here
    }

  return IntPtr.Zero;
}
link|improve this answer
feedback

You can find another explanation for attaching to WndProc here.

link|improve this answer
feedback

The short answer is you can't. WndProc works by passing messages to a HWND on a Win32 level. WPF windows have no HWND and hence can't participate in WndProc messages. The base WPF message loop does sit on top of WndProc but it abstracts them away from core WPF logic.

You can use a HWndHost and get at a WndProc for it. However this is almost certainly not what you want to do. For the majority of purposes, WPF does not operate on HWND and WndProc. Your solution almost certainly relies on making a change in WPF not in WndProc.

link|improve this answer
feedback

No disrespect to the other posters - but the world doesn't actually run on WPF and a lot of third party apps, especially C/C++ ones, use Windows Messaging as a way to broadcast data, or to add special hardware events. It's nice to say 'you don't need it with WPF', but that's both being shortsighted and not actually answering the question asked - especially if you don't actually explain WHY you don't need it in the context of the question asked.

You're thinking 'you don't need it', but to me, it reads 'WPF has a major defect'.

link|improve this answer
feedback

Here is a link on overriding WindProc using Behaviors: http://10rem.net/blog/2010/01/09/a-wpf-behavior-for-window-resize-events-in-net-35

link|improve this answer
feedback

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.

link|improve this answer
feedback

WPF doesn't operate on WinForms type wndprocs

You can host an HWndHost in an appropriate WPF element then override the Hwndhost's wndproc, but AFAIK that's as close as you're going to get.

http://msdn.microsoft.com/en-us/library/ms742522.aspx

http://blogs.msdn.com/nickkramer/archive/2006/03/18/554235.aspx

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.