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

首頁 > 編程 > C# > 正文

C#截取當前活動窗體的圖片

2023-05-18 12:33:15
字體:
來源:轉載
供稿:網友
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Drawing.Imaging;
using System.Text;
using System.Windows.Forms;

 
namespace WindowsFormsApplication4
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

 
        private void button1_Click(object sender, EventArgs e)
        {
            CaptureImage(this.Location,new Point (0,0), new Rectangle(this.Location.X, this.Location.Y, this.Width,  this.Height), "c://ls.bmp");
        }

 
        public   void CaptureImage(Point SourcePoint, Point DestinationPoint,Rectangle SelectionRectangle, string FilePath)
        {
            using (Bitmap bitmap = new Bitmap(SelectionRectangle.Width,
                SelectionRectangle.Height))
            {
                using (Graphics g = Graphics.FromImage(bitmap))
                {
                    g.CopyFromScreen(SourcePoint, DestinationPoint,
                        SelectionRectangle.Size);
                }
                bitmap.Save(FilePath, ImageFormat.Bmp);
                bitmap.Dispose();
            }
        }
    } 
}
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 洛阳市| 鹤岗市| 泊头市| 满洲里市| 濉溪县| 岑巩县| 洛隆县| 黑龙江省| 沾益县| 岳池县| 宁德市| 抚顺市| 义乌市| 北碚区| 镇宁| 德保县| 元氏县| 永州市| 乐业县| 凌海市| 大安市| 巨鹿县| 正定县| 梓潼县| 长阳| 彩票| 靖宇县| 射洪县| 砚山县| 读书| 临桂县| 延长县| 荥阳市| 邓州市| 延安市| 广宗县| 林周县| 丰城市| 双城市| 子长县| 天津市|