摘要:
Bitmap bitmap = new Bitmap(Screen.PrimaryScreen.Bounds.Width, Screen.PrimaryScreen.Bounds.Height); Graphics g = Graphics.FromImage(bitmap); g.CopyFromScreen(new Po... 阅读全文
摘要:
private void Form1_Paint(object sender, PaintEventArgs e) { Graphics g = e.Graphics; g.SmoothingMode = SmoothingMode.HighQuality;//去掉锯齿 g.CompositingQual... 阅读全文
摘要:
在程序窗口上使用鼠标画图 阅读全文
摘要:
1获取画布 (1)从PaintEventArgs类中获取画布 (2)从Image中获取画布 (3)使用CreateGraphics创建画布 (4)其他方式 从设备上下文的指定句柄创建新的 System.Drawing.Graphics public static Graphics FromHdc(I 阅读全文