当鼠标点击并移动特定控件(在本例中为toolStrip)时,我正在使用前面提到的代码来移动我的窗体。
private void toolStrip1_MouseDown(object sender, MouseEventArgs e)
{
if (e.Button == MouseButtons.Left) //Wenn die linke Maustaste gedrückt wurde,
FormMouseDownLocation = e.Location; //wird die Position der Maus gespeichert