コード例 #1
0
 public bool Invalidate(bool shouldErase = false)
 {
     return(User32Methods.InvalidateRect(this.Handle, IntPtr.Zero, shouldErase));
 }
コード例 #2
0
 public bool Invalidate(ref Rectangle rect, bool shouldErase = false)
 {
     return(User32Methods.InvalidateRect(this.Handle, ref rect, shouldErase));
 }