如何获得输入法条的位置和尺寸?(100分)

  • 主题发起人 主题发起人 Conch
  • 开始时间 开始时间
C

Conch

Unregistered / Unconfirmed
GUEST, unregistred user!
如题,大家有解决的办法吗?
 
//以下是在XP中的,别的系统 不知道,具体的类和标题你可以用SPY++看
var
h:thandle;
r:trect;
begin
h:=findwindow('CiceroUIWndFrame','TF_FloatingLangBar_WndTitle');
if h>0 then
begin
getwindowrect(h,r);
memo1.Lines.Add('Left: '+inttostr(r.Left )) ;
memo1.Lines.Add('Top: '+inttostr(r.Top )) ;
memo1.Lines.Add('Width: '+inttostr(r.Right-r.Left )) ;
memo1.Lines.Add('Height: '+inttostr(r.Bottom-r.Top )) ;
end;
 
我试了,返回的h是0。
 
你用spy++看看
 
接受答案了.
 
谢谢了!
 
后退
顶部