如题。已知X、Y坐标以及高、宽
如何根据条件进行屏幕截图?(给代码)

解决方案 »

  1.   

    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"); 
            } 
        } 
    }