请问如何用 api 获得窗口的类型(100分)

  • 主题发起人 主题发起人 wangjintu
  • 开始时间 开始时间
LONG GetWindowLong( HWND hWnd, // handle of window
int nIndex // offset of value to retrieve);
 
GetClassName(hWnd: HWND; //窗口句柄
lpClassName: PChar; //存放窗口类类名字符串的缓冲区
nMaxCount: Integer //以上缓冲区的大小(单位字节)
): Integer; //实际返回类名字符串的长度(单位字节)
 
多人接受答案了。
 
后退
顶部