嗨,我正在开发一个用户可以截取屏幕截图的程序.用户可以选择是否要从屏幕1,2,3或4中截取屏幕截图.我知道如何从第一个屏幕中取出第一个屏幕截图,但是如何从屏幕2,3和4中获取图像?
private void btnScreenOne_Click(object sender,EventArgs e) { Bitmap bitmap = new Bitmap(Screen.PrimaryScreen.Bounds.Width,Screen.PrimaryScreen.Bounds.Height); Graphics graphics = Graphics.FromImage(bitmap as Image); graphics.CopyFromScreen(0,bitmap.Size); bitmap.Save(@"C:\Users\kraqr\Documents\PrintScreens\" + DateTime.Now.ToString("yyyy-MM-dd_HH-mm-ss") + " Screen1" + ".bmp",ImageFormat.Bmp); }
感谢答案.