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 » CExtPropertyGridWndCategorized Collapse All
Subject Author Date
Offer Har Jan 24, 2007 - 7:44 PM

Dear Support,

I need a grid which in a categorized grid much like the categorized grid of CExtPropertyGridCtrl, which I understand is implemned in CExtPropertyGridWndCategorized. I don’t need all the bells and whistles of a full property grid.

Is it possible to used this class by itself, or is it meant to be used only as a child of a CExtPropertyGridCtrl?

Regards,
Ron.

Technical Support Jan 29, 2007 - 12:53 PM

You can create a property grid control with a categorized tree grid window only by overriding CExtPropertyGridCtrl::OnPgcCreateGrids() in a CExtPropertyGridCtrl-derived class. it should be the same as the original method but should create a CExtPropertyGridWndCategorized window and should not create a CExtPropertyGridWndSorted window. You can also exclude other bars by overriding CExtPropertyGridCtrl::OnPgcCreateBars().

You cannot use CExtPropertyGridWndCategorized without its parent CExtPropertyGridCtrl

Offer Har Jan 29, 2007 - 1:09 PM

Thanks!