Codejock Forums Homepage
Forum Home Forum Home > Codejock Products > Visual C++ MFC > Docking Pane
  New Posts New Posts RSS Feed - How to use CXTResizeDialog class
  FAQ FAQ  Forum Search   Events   Register Register  Login Login

How to use CXTResizeDialog class

 Post Reply Post Reply
Author
Message
eousi View Drop Down
Groupie
Groupie


Joined: 25 March 2010
Location: China
Status: Offline
Points: 10
Post Options Post Options   Thanks (0) Thanks(0)   Quote eousi Quote  Post ReplyReply Direct Link To This Post Topic: How to use CXTResizeDialog class
    Posted: 30 March 2011 at 10:21pm
I create a dialog and place a tree control on it.Now I change the size of dialog,and I want the tree control to have the same size with dialog.I use SetResize method of CXTResizeDialog class,but there is a problem.I want to see the sample of this class,Thanks.My code is below:
void CDlgTypeList::OnSize(UINT nType, int cx, int cy)
{
   CDialog::OnSize(nType, cx, cy);
   CXTResizeDialog rszDlg;
   CXTResizeRect rszRc;
   CRect rc;
   GetWindowRect(rc);
   rszRc=rc;
   rszDlg.SetResize(IDC_TREE, rszRc.left, rszRc.top, rszRc.right, rszRc.bottom);
}
Back to Top
Oleg View Drop Down
Admin Group
Admin Group


Joined: 21 May 2003
Location: United States
Status: Offline
Points: 11234
Post Options Post Options   Thanks (0) Thanks(0)   Quote Oleg Quote  Post ReplyReply Direct Link To This Post Posted: 05 April 2011 at 4:22am
If you have only one control to fit whole dialog, its much easear manually resize it in OnSize event.

m_tree.MoveWindow(0, 0, cx, cy);
Oleg, Support Team
CODEJOCK SOFTWARE SOLUTIONS
Back to Top
eousi View Drop Down
Groupie
Groupie


Joined: 25 March 2010
Location: China
Status: Offline
Points: 10
Post Options Post Options   Thanks (0) Thanks(0)   Quote eousi Quote  Post ReplyReply Direct Link To This Post Posted: 05 April 2011 at 8:58pm
Hi,
I know this method,but I only want to know how to use CXTResizeDialog class.Can you give me a sample?
Back to Top
 Post Reply Post Reply
  Share Topic   

Forum Jump Forum Permissions View Drop Down

Forum Software by Web Wiz Forums® version 12.04
Copyright ©2001-2021 Web Wiz Ltd.

This page was generated in 0.188 seconds.