2
我見過this關於如何用光標捕捉屏幕的教程。 現在我添加了一個計時器和datagridview,我想將每個捕獲保存在datagridview中。下面是我做的:無法將圖片從圖片框保存到datagridview
private void Display(Bitmap desktop)
{
Graphics g;
Rectangle r;
if (desktop != null)
{
r = new Rectangle(0, 0, pictureBox1.Width, pictureBox1.Height);
g = pictureBox1.CreateGraphics();
g.DrawImage(desktop, r);
g.Flush();
Bitmap bmp = new Bitmap(pictureBox1.Width, pictureBox1.Height, g);
dataGridView1.Rows.Add(bmp);
}
}
但我得到的是白色的相似圖片:
我不能達到的地步,我可以節省picturebox
什麼出現,並將其添加到datagridview
以及它並保存捕獲的'datagridview',但如何看待它picturebox'每次在'它之前添加到DataGridView –
@MagedEWilliam更新後與PictureBox圖像屬性顯示相同的位圖。 – LarsTech
不錯,但如何讓它成爲'jepg'的一半結果 –