Creating a Splitter Window in a Dialog Box in Three Easy Steps | CodeGuru

Creating a Splitter Window in a Dialog Box in Three Easy Steps

This article was contributed by Charles Bonneville. Environment: Visual C++ How to implement a CSplitterWnd into a CDialogBox in three easy steps without overriding any function, writing new classes, etc. Because I’m not a writer, this article will take you directly to the main subject: how to implement a CSplitterWnd into a CDialogBox without overriding […]

Written By
CodeGuru Staff
CodeGuru Staff
May 5, 2003
1 minute read
CodeGuru content and product recommendations are editorially independent. We may make money when you click on links to our partners. Learn More

This article was contributed by Charles Bonneville.

Environment: Visual C++

How to implement a CSplitterWnd into a CDialogBox in three easy steps without overriding any function, writing new classes, etc.

Because I’m not a writer, this article will take you directly to the main subject: how to implement a CSplitterWnd into a CDialogBox without overriding any MFC functions or writing new classes. The solution is simple; you just need to follow these steps:

  1. In the OnCreate function or your CDialog, register a new WindowClass by calling “AfxRegisterWndClass”.
  2. Create a new CFrameWnd by using the “new” operator and initialize it.
  3. Create your splitter by using the new CFrameWnd you just created as the parent.

By using this technique, you don’t need to override anything because the parent of the splitter is still a CFrameWnd. In the following sample, we create a splitter with two panes (with the same view type).

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

    // Initialize a context for the view. CDialog1 is my view and
    // is defined as :  class CDIalog1 : public CTreeView.
    CCreateContext ccc;
    ccc.m_pNewViewClass   = RUNTIME_CLASS(CDialog1);
    ccc.m_pCurrentDoc     = NULL;
    ccc.m_pNewDocTemplate = NULL;
    ccc.m_pLastView       = NULL;
    ccc.m_pCurrentFrame   = NULL;

    // Because the CFRameWnd needs a window class, we will create
    // a new one. I just copied the sample from MSDN Help.
    // When using it in your project, you may keep CS_VREDRAW and
    // CS_HREDRAW and then throw the other three parameters.
    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,1,1), this);
    m_pMyFrame->ShowWindow(SW_SHOW);
    m_pMyFrame->MoveWindow(0,0,300,300);

    // and finally, create the splitter with the frame as
    // the parent
    m_cSplitter.CreateStatic(pMyFrame,1, 2);
    m_cSplitter.CreateView(0,0, RUNTIME_CLASS(CDialog1),
                                CSize(100,100), &ccc);
    m_cSplitter.CreateView(0,1, RUNTIME_CLASS(CDialog1),
                                CSize(100,100), &ccc);
}

BOOL CMyDialog::OnInitDialog()
{
  CDialog::OnInitDialog();
  CRect cRect;

  // Get the rectangle of the custom window. The custom window
  // is just a a big button that is not visible and is disabled.
  // It's a trick to not use coordinates directly.
  GetDlgItem(IDC_CUTSOM_WINDOW)->GetWindowRect(&cRect);

  // Move the splitter
  ScreenToClient(&cRect);
  m_pFrameWnd->MoveWindow(&cRect);
  m_pFrameWnd->ShowWindow(SW_SHOW);
  m_cSplitter.MoveWindow(0,0, cRect.Width(), cRect.Height());
  m_cSplitter.ShowWindow(SW_SHOW);

  return TRUE;  // return TRUE unless you set the focus to a
                // control
                // EXCEPTION: OCX Property Pages should return
                // FALSE
}
CodeGuru Logo

CodeGuru covers topics related to Microsoft-related software development, mobile development, database management, and web application programming. In addition to tutorials and how-tos that teach programmers how to code in Microsoft-related languages and frameworks like C# and .Net, we also publish articles on software development tools, the latest in developer news, and advice for project managers. Cloud services such as Microsoft Azure and database options including SQL Server and MSSQL are also frequently covered.

Property of TechnologyAdvice. © 2026 TechnologyAdvice. All Rights Reserved

Advertiser Disclosure: Some of the products that appear on this site are from companies from which TechnologyAdvice receives compensation. This compensation may impact how and where products appear on this site including, for example, the order in which they appear. TechnologyAdvice does not include all companies or all types of products available in the marketplace.