使用C#实现在屏幕上画图效果的代码实例_技术学院_宜昌市隼壹珍商贸有限公司

您好,欢迎访问宜昌市隼壹珍商贸有限公司

400 890 5375
当前位置: 主页 > 新闻动态 > 技术学院

使用C#实现在屏幕上画图效果的代码实例

发布时间:2026-01-17  |  点击率:

以下这段C#代码实现的功能是在屏幕上画图的效果!具体代码如下:
复制代码 代码如下:
//DllImport所在的名字空间
 using System.Runtime.InteropServices;
[DllImport("User32.dll")]
public extern static System.IntPtr GetDC(System.IntPtr hWnd); 
private void button19_Click(object sender, EventArgs e)
{
    System.IntPtr    DesktopHandle   =    GetDC(System.IntPtr.Zero);
    Graphics g = Graphics.FromHdc(DesktopHandle);
    g.DrawRectangle(new Pen(Color.Red),new Rectangle(10,10,100,100));
}

全国统一服务电话

400 890 5375

电子邮箱:879577@qq.com

公司地址:宜昌市西陵区黄河路5号三峡明珠10栋1051室

咨询微信

TEL:13680874598