CProShowView* pView;
CProShowView::CProShowView()
{
// TODO: 在此处添加构造代码
pView = this;
}
#include "ProShowDoc.h"
#include "ProShowView.h"extern CProShowView* pView;
BOOL Page3::PreTranslateMessage(MSG* pMsg)
{
// TODO: 在此添加专用代码和/或调用基类
if(pMsg->message == WM_LBUTTONDOWN)
{
if(pMsg->hwnd == m_listbox.m_hWnd)
{
if(0 == m_listbox.GetSel(0))
{
 pView->SetFocus();
}

}
}
}