获得窗口句柄的方法
//直接获得
AfxGetMainWnd()->m_hWnd
//通过AfxGetApp()间接获得
AfxGetApp()->GetMainWnd()->m_hWnd
//当前窗口
GetForegroundWindow()->m_hWnd)
//当前活动的窗口句柄
GetActiveWindow()->m_hWnd
//窗口名
AfxGetMainWnd()->SetWindowText("我的程序");
CWnd *hwnd = FindWindow(NULL, "我的程序");
//利用GetSafeHwnd()
GetSafeHwnd()