截圖的方式有好幾種,這一篇文章是我看到的有趣又簡潔的一種方式 - 模擬使用者按[print screen] 按鈕的方式來做截圖,Interesting!!!
this.Hide();
System.Threading.Thread.Sleep(1000);
SendKeys.Send("{PRTSC}");
Image myImage = Clipboard.GetImage();
pictureBox1.Image = myImage;
myImage.Save("E:\\abc.jpg");
this.Show();
}
0 意見:
張貼留言