|对话框窗口切分|

-------------------------------------------------------------------------------------------
|对话框窗口切分|
-------------------------------------------------------------------------------------------
.h文件


CFrameWnd *m_pMyFrame;
CSplitterWnd m_cSplitter;
CSplitterWnd m_cSplitterone;
virtual BOOL OnInitDialog(); 
afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);


.cpp文件中


BOOL CLoadAdjustmentInventoryDlg::OnInitDialog()
{
CDialog::OnInitDialog();


CRect cRect;
GetWindowRect(&cRect);
ScreenToClient(&cRect);
m_pMyFrame->MoveWindow(&cRect);
m_pMyFrame->ShowWindow(SW_SHOW);
return TRUE;  // return TRUE unless you set the focus to a control
// 异常: OCX 属性页应返回 FALSE
}


int CLoadAdjustmentInventoryDlg::OnCreate(LPCREATESTRUCT lpCreateStruct)
{
if (CDialog::OnCreate(lpCreateStruct) == -1)
return -1;


// TODO:  在此添加您专用的创建代码
CString strMyClass = AfxRegisterWndClass(CS_VREDRAW | CS_HREDRAW,  
::LoadCursor(NULL, IDC_ARROW),    (HBRUSH) ::GetStockObject(WHITE_BRUSH),   
::LoadIcon(NULL, IDI_APPLICATION));


// Create the frame window with "this" as the parent
m_pMyFrame = new CFrameWnd;
m_pMyFrame->Create(strMyClass,"", WS_CHILD,   CRect(0,0,300,300), this);
m_pMyFrame->ShowWindow(SW_SHOW);


// and finally, create the splitter with the frame as the parent
m_cSplitter.CreateStatic(m_pMyFrame,2, 1); //在Frame里切分视图窗口为1×2,就是一行两列
m_cSplitterone.CreateStatic(&m_cSplitter,1,2,WS_CHILD|WS_VISIBLE,m_cSplitter.IdFromRowCol(1,0));
m_cSplitter.CreateView(0,0, RUNTIME_CLASS(CThereAreStockSegmentationDlg),CSize(100,100), NULL);//第一行一列


m_cSplitterone.CreateView(0,0, RUNTIME_CLASS(CThereAreStockSegmentationoneDlg),CSize(100,100), NULL);
m_cSplitterone.CreateView(0,1, RUNTIME_CLASS(CThereAreStockSegmentationtwoDlg),CSize(100,100), NULL);//第一行二列


return 0;
}


说说切分后不能移动,不能拖拉 
第1步:首先要创建一个新的CSplitterWnd派生类,它将完成锁定分割器的行为,我们把这个类称为CFixedSplitter。
class CFixedSplitter: public CSplitterWnd{};
第2步:使用ClassWizard在CFixedSplitter类中增加句柄来处理WM_LBUTTONDOWN,WM_MOUSEMOVE和WM_SETCURSOR消息。这些消息的具体实现见下面的代码。它们达


到了锁定分割器的目的。


void CFixedSplitter::OnLButtonDown(UINT nFlags, CPoint point)
{
//回避标准的CSplitterWnd处理过程CSplitterWnd::OnLButtonDown(UINT nFlags, CPoint point);
CWnd::OnLButtonDown(nFlags, point);
}


void CFixedSplitter::OnMouseMove(UINT nFlags, CPoint point)
{
//回避标准的CSplitterWnd::OnMouseMove(nFlags, point);  
CWnd::OnMouseMove(nFlags, point);  
}


BOOL CFixedSplitter::OnSetCursor(CWnd* pWnd, UINT nHitTest, UINT message)
{
//回避标准的CSplitterWnd::OnSetCursor(pWnd, nHitTest, message);  
return CWnd::OnSetCursor(pWnd, nHitTest, message); 
}
最后把CSplitterWnd m_cSplitter声明,修改为:CFixedSplitter m_cSplitter; 完成!
-------------------------------------------------------------------------------------------
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值