mousemove event designtime

  • Thread starter Thread starter dutzend
  • Start date Start date
D

dutzend

Hi,

I try to repaint a custom control while I'm moving it in design time.
Exactly I want to refresh the background image. I can't found any
event to do this.
My environment:
A standard framework designtime.dll and a compact framework custom
control (both 3.5).
All events I try, also the overriden, get any effect.

Thx for any help
René
 
I think you need to implement the OnPaintBackground. Usually you override
this to do nothing and handle the paint yourself. But you could try
implementing this only in design time then calling OnPaint.

--
Simon Hart
Visual Developer - Device Application Development MVP
http://www.simonrhart.com

Hi,

I try to repaint a custom control while I'm moving it in design time.
Exactly I want to refresh the background image. I can't found any
event to do this.
My environment:
A standard framework designtime.dll and a compact framework custom
control (both 3.5).
All events I try, also the overriden, get any effect.

Thx for any help
René
 
Back
Top