怎样获取“属性”窗口的指针?
我用VS2010生成了一个“属性窗口”。现在我想在App中和view中获取这个属性窗口的指针,怎么办?属性类是CPropertiesWnd,基类是CDockablePane。请各位大侠帮一下忙 --------------------编程问答-------------------- --------------------编程问答-------------------- void * p = (CMainFrame*)AfxGetApp()->m_pMainWnd->&m_wndProperties; --------------------编程问答--------------------
这个有错误:error C2059: 语法错误:“&”
我想返回的是CPropertiesWnd类的指针.请大侠指教啊 --------------------编程问答-------------------- void * p =&(CMainFrame*)AfxGetApp()->m_pMainWnd->&m_wndProperties; --------------------编程问答-------------------- 没人回答就结贴了 --------------------编程问答-------------------- 我一般的做法是在CMainFrame中加一个函数
CPropertiesWnd *CMainFrame::GetPropertiesWnd
{
return &m_wndProperties;
} --------------------编程问答-------------------- 使用如下:
CPropertiesWnd *pWnd = AfxGetMainWnd()->GetPropertiesWnd();
其实和上面的方法是一样的。
补充:.NET技术 , VC.NET