Capture Lost

  • Thread starter Thread starter n!
  • Start date Start date
N

n!

I'm about to modify the message loop in my winform to process the
WM_CAPTURECHANGED message and fire an event, before I do I would just like
to check there isn't already an event present for this? Haven't noticed one
so far, but it seems strange to have it left out! :)

thanks,
n!
 
What's the handle? A Control or just the form?

If its for the for, you'll have to roll your own.
 
What's the handle? A Control or just the form?
If its for the for, you'll have to roll your own.

I'm not entirely sure what you mean, but I can put the handler in either the
control or form. I have a central "capture manager" singleton that all mouse
input gets redirected to, which in turn passes it onto the applications
currently active tool. I'm not interested in the window gaining the capture,
only the change notification itself so I can inform the tool to cancel its
operation.

Thanks
n!
 
Back
Top