Windows窗口类

``
 
 char s_Buf[256];
 HWND hWnd = ::GetForegroundWindow();//GetActiveWindow(); //'得到活动窗口的句柄 
 ::GetWindowText(hWnd,s_Buf,255);
 AfxMessageBox(s_Buf);

你可能感兴趣的:(Windows窗口类)