我需要在窗口中找到坐标。
这里不起作用的公式:
Rectangle warwnd;
GetWindowRect(wprc.MainWindowHandle, out warwnd);
Int32 yy1 = warwnd.Height - (((warwnd.Height - warwnd.Top) / 100) * 94);
Int32 xx1 = warwnd.Width - (((warwnd.Width - warwnd.Left) / 100) * 97);
我需要在窗口中找到 X,Y 点: 6 percent of window height 和 3 percent of window width 。