控件名称.Location
横坐标:控件名称.Location.X
纵坐标:控件名称.Location.Y
private void pan_Drowing_MouseClick(object sender, MouseEventArgs e)
{
int a,b;
a = e.X;
b = e.Y;
}
"this.button1.Top="+ this.button1.Top.ToString() + ";this.button1.Left=" + this.button1.Left.ToString();