MFC返回应用程序活动主窗口的指针
时间: 2023-07-19 21:28:26 浏览: 143
MFC应用程序中指针的使用
在MFC中,可以通过调用`AfxGetMainWnd()`函数来获取应用程序的主窗口指针。该函数返回一个指向`CWnd`类对象的指针,即指向主窗口的指针。
以下是一个示例代码:
```c++
CWnd* pMainWnd = AfxGetMainWnd();
if (pMainWnd != NULL) {
// do something with the main window
} else {
// there is no main window
}
```
注意,`AfxGetMainWnd()`函数只能获取当前应用程序的主窗口指针,如果需要获取其他窗口的指针,需要使用其他函数,如`FindWindow()`等。
阅读全文