用MFC文档视图结构 如何在分割窗口的各个视图之间传递消息 20

急求在今天给一个详细代码范例!!!有急用,谢谢.... 急求在今天给一个详细代码范例!!!有急用,谢谢
.
展开
 我来答
wjy0412
2010-01-21
知道答主
回答量:13
采纳率:0%
帮助的人:7.9万
展开全部
通过下述代码可以完成两个分割窗口视图间的消息传递,其中CLeft为左侧视图,CSplitView为右侧视图。
void CLeft::OnLButtonDown(UINT nFlags, CPoint point)
{
// TODO: Add your message handler code here and/or call default
CMainFrame* MainFrame = (CMainFrame*)AfxGetMainWnd();
CSplitView* FindView=(CSplitView*)MainFrame->m_wndSplitter.GetPane(0,1);
//FindView->point=point;
FindView->DrawPoint(point);
CView::OnLButtonDown(nFlags, point);
}
DrawPoint函数为画点函数,如下:
void CSplitView::DrawPoint(CPoint Point)
{
HDC hDC=::GetDC(m_hWnd);
SetPixel(hDC,Point.x,Point.y,RGB(255,0,0));
}
CMainFrame类中的OnCreateClient函数代码如下:
BOOL CMainFrame::OnCreateClient(LPCREATESTRUCT lpcs, CCreateContext* pContext)
{
// CG: The following block was added by the Splitter Bar component.
{
m_wndSplitter.CreateStatic(this,1,2);
m_wndSplitter.CreateView(0,0,RUNTIME_CLASS(CLeft),CSize(200,600),pContext);
m_wndSplitter.CreateView(0,1,RUNTIME_CLASS(CSplitView),CSize(100,0),pContext);
return true;

}
}
我这有源代码,可以加我qq:113035171
quanjiaokk
推荐于2016-01-16
知道答主
回答量:1
采纳率:0%
帮助的人:0
展开全部
可以试试通过文档通信
CRightView* CXXDoc::GetView()
{
// find the first view - if there are no views
// we must return NULL

POSITION pos = GetFirstViewPosition();
if (pos == NULL)
return NULL;

// find the first view that is a CRichEditView

CView* pView;
while (pos != NULL)
{
pView = GetNextView(pos);
if (pView->IsKindOf(RUNTIME_CLASS(CRightView)))
return (CRightView*) pView;
}

// can't find one--return NULL

return NULL;
}
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
scansoft
2010-01-21 · TA获得超过114个赞
知道答主
回答量:248
采纳率:0%
帮助的人:79.4万
展开全部
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式