发新话题
打印

如何得到控件坐标

使用API SetWindowPos

BOOL SetWindowPos(
  HWND hWnd,             // handle to window
  HWND hWndInsertAfter,  // placement-order handle
  int X,                 // horizontal position
  int Y,                 // vertical position
  int cx,                // width
  int cy,                // height
  UINT uFlags            // window-positioning flags
);

TOP

[code:118b78e48d]        RECT mRect;
        m_Edit1.GetWindowRect (&mRect);
        int iw=mRect.right-mRect.left ;
        int ih=mRect.bottom-mRect.top ;
        m_Edit1.MoveWindow( 20,20,iw,ih);[/code:118b78e48d]

TOP

发新话题