forcing to paint

  • Thread starter Thread starter benben
  • Start date Start date
B

benben

How to force a control to paint itself. I used to send a WM_PAINT message in
Win32 days but I can't find the equivalent of SendMessage in the .Net
Framework.

I would like to avoid calling any Win32 functions in this case.

ben
 
benben said:
How to force a control to paint itself. I used to send a WM_PAINT message
in
Win32 days but I can't find the equivalent of SendMessage in the .Net
Framework.

'Control.Invalidate', 'Control.Refresh', 'Control.Update'.
 
Back
Top