国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > C# > 正文

C#實現(xiàn)屏幕拷貝的方法

2020-01-24 01:45:01
字體:
供稿:網(wǎng)友

本文實例講述了C#實現(xiàn)屏幕拷貝的方法。分享給大家供大家參考。具體如下:

方法一:

using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System.Windows.Forms;using System.Drawing.Drawing2D;namespace WindowsApplication2{  public partial class Form21 : Form  {    public Form21()    {      InitializeComponent();    }    private void button1_Click(object sender, EventArgs e)    {      Rectangle screenRect = Screen.PrimaryScreen.WorkingArea;      Bitmap dumpBitmap = new Bitmap(screenRect.Width, screenRect.Height);      Graphics tg = Graphics.FromImage(dumpBitmap);      tg.CopyFromScreen(0, 0, 0, 0, new Size(dumpBitmap.Width, dumpBitmap.Height));      this.pictureBox1.BackgroundImage = dumpBitmap;      this.pictureBox1.BackgroundImageLayout = ImageLayout.Stretch;      dumpBitmap.Save(@"c:/image1.bmp");    }  }}

方法二:

using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System.Windows.Forms;namespace WindowsApplication2{  public partial class Form22 : Form  {    public Form22()    {      InitializeComponent();    }    private void button1_Click(object sender, EventArgs e)    {      Rectangle rect = new Rectangle(0, 0, this.Size.Width, this.Size.Height);      Bitmap dumpBitmap = new Bitmap(this.Size.Width, this.Size.Height);      this.DrawToBitmap(dumpBitmap, rect);      this.pictureBox1.BackgroundImage = dumpBitmap;      this.pictureBox1.BackgroundImageLayout = ImageLayout.Stretch;      dumpBitmap.Save(@"c:/image2.bmp");    }  }}

希望本文所述對大家的C#程序設(shè)計有所幫助。

發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 宁化县| 油尖旺区| 闸北区| 洪雅县| 闸北区| 玉环县| 福建省| 翼城县| 延长县| 肇东市| 丹寨县| 蓝山县| 莎车县| 山东| 北票市| 泰安市| 分宜县| 靖安县| 皮山县| 贵定县| 南通市| 柏乡县| 武安市| 梓潼县| 崇仁县| 东源县| 霸州市| 岑溪市| 伊通| 银川市| 滨海县| 兰溪市| 灵宝市| 重庆市| 和田市| 平舆县| 神木县| 伊春市| 开平市| 阿拉善左旗| 海南省|