private void mainPictureBox_MouseDown(object sender, MouseEventArgs e)
 {
     dragStartingPoint = e.Location;
     if (BSManager.ExistsSuitableInputComponentAtPoint(dragStartingPoint))
     {
         imageBeforeDrag = new Bitmap((sender as PictureBox).Image);
     }
 }