[DllImport("User32.dll")]
public extern static IntPtr GetDC(System.IntPtr hWnd);     
IntPtr DesktopHandle = GetDC(IntPtr.Zero);
Graphics g = System.Drawing.Graphics.FromHdc(DesktopHandle);
g.FillRectangle(Brushes.Red, 0, 0, 100, 100); 现在想把这个矩形擦掉,恢复原来的屏幕,如何操作??