Draw / Paint Outside Form

≡放荡痞女 提交于 2019-11-26 23:30:12

问题


Can we paint images and draw text... outside a form.. i mean literally outside...

i know its stupid question to ask but CAN we...


回答1:


You can "cheat" by creating a form, and setting its TransparentColor property to its background color, then draw on it. However, this prohibits you from drawing the transparent color because it won't show.

Or you could actually draw directly to the desktop.

[DllImport("User32.dll")]
public static extern IntPtr GetDC(IntPtr hwnd);
[DllImport("User32.dll")]
public static extern void ReleaseDC(IntPtr dc);

IntPtr desktopPtr = GetDC(IntPtr.Zero);
Graphics g = Graphics.FromHdc(desktopPtr);

// Do graphics manipulation here with "g" object

// Very important - free desktop graphics.
g.Dispose();
ReleaseDC(desktopPtr);



回答2:


You cannot draw on something that does not exist. The area outside of a form, by that definition, does not exist in the context of the form.

I agree with Henk, though, you can draw on transparent forms.



来源:https://stackoverflow.com/questions/3379306/draw-paint-outside-form

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!