Repaint Window when moving it?

  • Thread starter Thread starter Carlos
  • Start date Start date
C

Carlos

Hello.

When a form must be repainted after changing its size the
property ResizeRedraw must be set to true.

¿Is there any property in Form Class to make the same
thing when the form is moved but not resized?

thanks for all.

Carlos
 
* "Carlos said:
When a form must be repainted after changing its size the
property ResizeRedraw must be set to true.

¿Is there any property in Form Class to make the same
thing when the form is moved but not resized?

Add a handler to the form's 'Move' event and invalidate it.
 
Back
Top