예제 #1
0
 // This starts the dragging of a picture from the catalog to DesignPanel.
 private void pictureBox1_MouseDown(object sender, MouseEventArgs e)
 {
     crossPicturebox.Visible = false;
     if (e.Button == MouseButtons.Left)
     {
         dc.StartDrag(sender, e);
     }
 }