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:
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();
}
}
but it does not work, however if I change pressed to depressed it works partly.
regards,
Ger
Last edited by TBBW; December 11th, 2012 at 01:06 PM.
Reason: code correction
Bookmarks