Hi all,
As the title sugest, it is -standard- not possible to move a boderless dialog
(Keep mouse button depressed and move the cursor)
You have to make it.
So I came up with:
but it does not work, however if I change pressed to depressed it works partly.Code:private void Dialog1_MouseDown(object sender, System.Windows.Forms.MouseEventArgs e) { while (Mouse.LeftButton == MouseButtonState.Pressed) { this.Location = new Point(MousePosition.X, MousePosition.Y); this.Update(); } }
regards,
Ger


Reply With Quote
Bookmarks