You can override the OnPaint method which is responsible for firing the paint event
VB Code:
  1. Protected Overrides Sub OnPaint(ByVal e As PaintEventArgs)
  2.         If isReady Then
  3.             MyBase.OnPaint(e)
  4.         End If
  5.     End Sub