自己顶一下,都没有使用过吗

解决方案 »

  1.   

    版主在吗,救命啊,看看我的问题啊,
      

  2.   

    可以参考一下下面的代码,窗体截屏private void button1_Click(object sender, EventArgs e)
    {     
        Bitmap bt = new Bitmap(this.Width, this.Height);
        Graphics g = Graphics.FromImage(bt);
        g.CopyFromScreen(new Point(this.Left, this.Top), new Point(0, 0), this.Size);
        bt.MakeTransparent();
        bt.Save("c:\\tempfile.bmp", System.Drawing.Imaging.ImageFormat.Bmp);