有BOOL CControlRect::Create( WindowType wndType, LPCTSTR lpszWindowName , CWnd* pParentWnd, DWORD dwStyle, const CRect& Rect , UINT nID )
{
if( Rect.IsRectEmpty() )
return CWnd::Create( GetWindowClassName( wndType ), lpszWindowName , WS_CHILD | dwStyle | WS_VISIBLE, m_rect, pParentWnd, nID );
else
{
m_rect.CopyRect( & Rect );
return CWnd::Create( GetWindowClassName( wndType ), lpszWindowName , WS_CHILD | dwStyle | WS_VISIBLE, m_rect, pParentWnd, nID );
}
}请问我在CVIEW中调用这个函数,我的CWnd* pParentWnd怎么获得.谢谢!