如何编写一个去掉TitleBar的可移动的form
大哥大姐们请给小弟点指点:
就是像msn那样去掉了TitleBar之后,托拽其控件的任何一个位置都会使整个控件移动。
void Form1_MouseMove(object sender, MouseEventArgs e)
{
if (isMouseDown != false)
{
this.Left += e.X - preX;
this.Top += e.Y - preY;
preX = e.X;
preY = e.Y;
}
//throw new Exception("The method or operation is not implemented.");
}
我这么写不行~出现残像~
高手帮帮忙~谢谢了