CallBack lpfn = new CallBack(this.ChildWindowsProcess); 
API.EnumChildWindows(this.windowhandle, lpfn, 0); private bool ChildWindowsProcess(int hwnd, int lParam) 

API.GetClassName(hwnd, this.buff, this.buff.Capacity); 
MessageBox.Show(buff.ToString()); 
return true; 
} 我用上面代码遍历QQ2009的聊天窗口 获得了一个叫 ATL:602E54D8 的东西
请问这个东西是ATL么?我获得了它的句柄,可不可以用句柄操作它?