您的位置:首页 > 编程语言 > C#

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

2018-10-12 14:00 731 查看

以下这段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));
}

您可能感兴趣的文章:

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: