當我們使用Windows資源管理器(Exporlor)時,看到左邊的視圖能夠顯示所選目標的相關信息,比較好用。
本例是一個簡單的Web視圖界面示例,不過左邊不是一個Web視圖,而是一個FormView。界面如下圖所示:
圖一 程序運行畫面
本例是最簡單的SDI工程,在View中創建了兩個View:
int CXindowView::OnCreate(LPCREATESTRUCT lpCreateStruct)
{
if (CView::OnCreate(lpCreateStruct) == -1)
return -1;
/* 創建左右兩個視圖 */
m_pForm = (CXindowForm *) okCreateView(RUNTIME_CLASS(CXindowForm), 1001);
m_pList = (CXindowList *) okCreateView(RUNTIME_CLASS(CXindowList), 1002);
m_pForm->m_pParent = this;
return 0;
}
當窗口寬度<400時,會隱藏左邊的CXindowForm視圖:
void CXindowView::OnSize(UINT nType, int cx, int cy)
{
CView::OnSize(nType, cx, cy);
int nFormWidth = 200;
/* 如果窗口寬度<400, 就隱藏左視圖 */
if(cx>400)
{
if(m_pForm->GetSafeHwnd()) m_pForm->ShowWindow(SW_SHOW);
if(m_pForm->GetSafeHwnd()) m_pForm->MoveWindow(0,0,nFormWidth,cy);
if(m_pList->GetSafeHwnd()) m_pList->ShowWindow(SW_SHOW);
if(m_pList->GetSafeHwnd()) m_pList->MoveWindow(nFormWidth,0,cx-nFormWidth,cy);
}
else
{
if(m_pForm->GetSafeHwnd()) m_pForm->ShowWindow(SW_HIDE);
if(m_pList->GetSafeHwnd()) m_pList->ShowWindow(SW_SHOW);
if(m_pList->GetSafeHwnd()) m_pList->MoveWindow(0,0,cx,cy);
}
}
其中左邊的的CXindowForm視圖中有個CXLabel控件“增加”,點擊會產生WM_NOFITY消息,這樣就能夠響應了。 void CXindowForm::OnInitialUpdate()
{
CFormView::OnInitialUpdate();
/* 相當於CListCtrl::SetItemData(), 用於區別是哪個CXLabel */
m_add.SetCommand(1);
}
BOOL CXindowForm::OnNotify(WPARAM wParam, LPARAM lParam, LRESULT* pResult)
{
LPNMHDR pnmh = (LPNMHDR) lParam;
if(pnmh->code==NM_LINKCLICK)
{
CXLabel* pLabel = (CXLabel *)GetDlgItem(pnmh->idFrom);
CString str;
/* GetCommand() */
str.Format("d",pLabel->GetCommand());
AfxMessageBox(str);
if(m_pParent->GetSafeHwnd())
{
CListCtrl& listCtrl = ((CXindowView*)m_pParent)->m_pList->GetListCtrl();
int nCount = listCtrl.GetItemCount();
int nItem = listCtrl.InsertItem(nCount, "2003-8-15");
listCtrl.SetItemText(nItem, 1, "192.168.3.1");
listCtrl.SetItemText(nItem, 2, "www.vckbase.com");
listCtrl.SetItemText(nItem, 3, "編程");
}
}
return CFormView::OnNotify(wParam, lParam, pResult);
}
注:CXLabel控件來自CLabel類,增加了幾個有效函數。