示例#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));
 }