简单问题!!取得窗口大小(100分)

  • 主题发起人 主题发起人 tresss
  • 开始时间 开始时间
T

tresss

Unregistered / Unconfirmed
GUEST, unregistred user!
已知一个窗口的句柄.handle1.<br><br>问如何取得此窗口的大小.即width.height
 
int w,h;<br>RECT rect;<br>::GetWindowRect(hWnd, &amp;rect);<br>h=rect.bottom-rect.top;//高<br>w=rect.right-rect.left;//宽
 
procedure a;<br>var<br>&nbsp; rc &nbsp;: TRect;<br>&nbsp; h &nbsp; : Integer;<br>&nbsp; w &nbsp; : Integer;<br>begin<br>&nbsp; GetWindowRect(Handle, rc);<br>&nbsp; h := &nbsp;rc.Bottom - rc.Top;//高<br>&nbsp; w := &nbsp;rc.Right - rc.Left;//宽<br>end;
 
谢谢,接受答案了
 
后退
顶部