求 一个矩形 控件的中心点 坐标
如题! 如何知道红色点的坐标 非常感谢!
2013-07-18 22:54
程序代码:int a = button3.Size.Width / 2; int b = button3.Size.Height / 2; int c = button3.Location.X + a; int d = button3.Location.Y + b;
2013-07-19 08:27
2013-07-22 00:47