最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

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

 更新時間:2015年06月12日 10:05:23   作者:zhuzhao  
這篇文章主要介紹了C#實現(xiàn)屏幕拷貝的方法,實例分析了兩種常用的屏幕拷貝實現(xiàn)技巧,需要的朋友可以參考下

本文實例講述了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è)計有所幫助。

相關(guān)文章

最新評論

福建省| 林芝县| 信阳市| 衡东县| 盘山县| 平舆县| 尼木县| 泽普县| 醴陵市| 巴东县| 新民市| 乌拉特后旗| 张家港市| 边坝县| 五华县| 当阳市| 刚察县| 海淀区| 黔江区| 醴陵市| 元江| 南宫市| 岑巩县| 水城县| 定州市| 如皋市| 三门县| 潮安县| 定兴县| 沾益县| 红河县| 桐城市| 宽城| 巴林右旗| 保靖县| 乐清市| 甘泉县| 鄱阳县| 台北市| 新蔡县| 湛江市|