我想获得激活窗口的宽度和高度,我必须将光标移动到
上窗口来自X => 0到X =>激活窗口的宽度与窗口高度相同。
我正在使用c#
处理Windows应用程序答案 0 :(得分:2)
您可以使用
int w =this.Width;
int h = this.Height;
上面的代码会给你高度和当前形式
你可以像下面那样设置鼠标位置
MousePosition = new Point(w,h);
答案 1 :(得分:1)
Form currentForm = Form.ActiveForm;
int formWidth = currentForm.Width;
int formHeight = currentForm.Height;