我建立了一个Frame类和一个ListView类
在Frame类Create中通过
m_pListView = new C***ListView;
if (!m_pListView->Create(NULL, NULL, AFX_WS_DEFAULT_VIEW,
CRect(0, 0, 0, 0), this, AFX_IDW_PANE_FIRST, NULL))
{
TRACE0("Failed to create view window\n");
return -1;
}
SetActiveView((CView*)m_pListView);
进行显示该Frame中有状态栏问题是如何在ListView中改变Frame中状态栏信息呢