pointer question, must do repaint

  • Thread starter Thread starter Jeroen Ceuppens
  • Start date Start date
J

Jeroen Ceuppens

Hi
I have this pointer: public static IntPtr hwnd_imagePanel;
Pointer to a panel, on that panel i draw my bitmaps, i want to use that
pointer and do and invalidate, so it will paint my bmp on it.

What should i do?

thx
JC
 
Invalidating it is simple - P/Invoke InvalidateRect passing NULL for the
RECT.
 
Back
Top