0

MoveWindow(handle, 0, 0, 1280, 720, true)DeSmuMEのプロセスで基本的なテストを行っていますが、まったく変化がありません。少なくとも、X / Y位置が0(画面の左上)に変化することを期待していましたが、いや、まったく何もありません。ハンドルをうまく取得し、RECT構造もそれで機能し、位置をうまく取得できます。

[StructLayout(LayoutKind.Sequential)]
public struct RECT {
  public int left;
  public int top;
  public int right;
  public int bottom;
}
[DllImport("user32.dll", SetLastError = true)]
static extern bool GetWindowRect(IntPtr hWnd, ref RECT Rect);

[DllImport("user32.dll", SetLastError = true)]
static extern bool MoveWindow(IntPtr hWnd, int X, int Y, int Width, int Height, bool Repaint);
static void Main(string[] args) {
  Process[] processes = Process.GetProcessesByName("DeSmuME_X432R_x64");
  foreach (Process p in processes) {
    IntPtr handle = p.MainWindowHandle;
    RECT Rect = new RECT();
    if (GetWindowRect(handle, ref Rect)) {
      MoveWindow(handle, 0, 0, 1280, 720, true);
    }
    Console.WriteLine(Rect.right);
    Console.ReadLine();
  }
}
4

0 に答える 0