Si può fare il drag&drop con un'immagine selezionata dall'openfiledialog?
Cioè posso trascinare un'immagine dalla finestra della mia dialog iin un panel?
Perchè non mi viene. Ho settato anche la proprietà del panel allowdrop su true, quindi non so cosa sbaglio.

codice:
private void temporalLineControl1_DragDrop(object sender, System.Windows.Forms.DragEventArgs e)
		{
			Point clientPoint = this.PointToClient(new Point (e.X, e.Y));
			Control co = GetChildAtPoint(new Point(clientPoint.X, (Height/2)));
			
			if (co == null)
			{
				PropImmagini select = (PropImmagini)e.Data.GetData(typeof (PropImmagini));
				System.Windows.Forms.Control l = new PaintRectangle(
					new Rectangle(clientPoint.X, Height/2, 20, 10),
					select.Nome, select.Path);
				l.BackColor = Color.Red;
				Controls.Add(l);
				l.BringToFront();
				this.Invalidate();
			}
			else
			{
				MessageBox.Show(this, "there is already a file in this position", "Error", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
			}
		}

		private void temporalLineControl1_DragOver(object sender, System.Windows.Forms.DragEventArgs drgevent)
		{
			base.OnDragOver (drgevent);
			drgevent.Effect = DragDropEffects.All;
		}