在桌面绘图,为什么屏幕未出现Ellipse?
            IntPtr hwnd = GetDesktopWindow();
            Graphics g = Graphics.FromHwnd(hwnd);
            g.DrawEllipse(Pens.White, 200, 200, 200, 200);
            ReleaseDC((IntPtr)null, hwnd);
            g.Dispose();