我有一个 C# 应用程序,我希望当将图像放在表单上时,表单中的图片框会显示图像。我试过这个
private void Form1_DragEnter(object sender, DragEventArgs e)
{
e.Effect = DragDropEffects.Move;
}
private void Form1_DragDrop(object sender, DragEventArgs e)
{
Graphics p = pictureBox1.CreateGraphics();
p.DrawImage((Image)e.Data.GetData(DataFormats.Bitmap), new Point(0, 10));
}
但它不起作用。
请问我做错了什么?