Professional UI Solutions
Site Map   /  Register
 
 

Forum

Please Log In to post a new message or reply to an existing one. If you are not registered, please register.

NOTE: Some forums may be read-only if you are not currently subscribed to our technical support services.

Forums » Prof-UIS Tech Support » CExtPageNavigatorWnd's pane Collapse All
Subject Author Date
Offer Har Apr 15, 2007 - 8:05 AM

Dear Support,

I would like to have a control that is only the CExtPageNavigatorWnd’s pane, without having all the rest of the CExtPageNavigatorWnd.
For example i would like only the content of the Tasks page without the rest Mail, Calender etc. something like what you get in the explorer in XP on the left side, but the panes in the CExtPageNavigatorWnd are nicer.

Please advise.

Thanks,
Ron.

Technical Support Apr 16, 2007 - 11:09 AM

You can create a CExtPageNavigatorWnd-derived class and override several virtual methods in the following way:

class CMyPageNavigatorWnd : public CExtPageNavigatorWnd
{
public:
 	virtual INT OnQueryItemCaptionHeight() const
	{
		return 0;
	}
 	virtual INT OnQuerySplitterHeight() const
	{
		return 0;
	}
 	virtual INT OnQueryCollapsedAreaHeight() const
	{
		return 0;
	}
};