Codejock Forums Homepage
Forum Home Forum Home > Codejock Products > Visual C++ MFC > Property Grid
  New Posts New Posts RSS Feed - UnCategorized Item
  FAQ FAQ  Forum Search   Events   Register Register  Login Login

UnCategorized Item

 Post Reply Post Reply
Author
Message
Paolo View Drop Down
Newbie
Newbie


Joined: 02 March 2006
Status: Offline
Points: 9
Post Options Post Options   Thanks (0) Thanks(0)   Quote Paolo Quote  Post ReplyReply Direct Link To This Post Topic: UnCategorized Item
    Posted: 21 September 2006 at 5:47am
Hello! I have a PropertyGridItem derived class and in my PropertyGrid I want to create an instance of this class. Then I want to add this instance to the PropertyGrid.

This Item has no category and I want it to be non categorized while all other items of the same PropertyGrid are categorized.
Actually I'm trying to solve this by moving PropertyGridView::InsertItem from private to public, but this solution (actually not working as PropertyGridItem is not fully initialized) requires me to modify PropertyGridView.h in all new releases.

Is there another way to do this without the need to modify Codejock sources on each new release?

Thanks for any hint
Paolo
Back to Top
Paolo View Drop Down
Newbie
Newbie


Joined: 02 March 2006
Status: Offline
Points: 9
Post Options Post Options   Thanks (0) Thanks(0)   Quote Paolo Quote  Post ReplyReply Direct Link To This Post Posted: 21 September 2006 at 6:22am
Just an update from previous post, but the need to change Codejock sources in new releases still remains.

I've been able to complete my task by moving PropertyGridView::InsertItem from private to public.

I create and instance of my class, set it's PropertyGridView and add it.

PropertyGridItem *pItem = new PropertyGridItem();

CXTPPropertyGridView *pPropertyGridView = &GetGridView();
pItem->setPropertyGridView(pPropertyGridView );

GetGridView().InsertItem(pItem, GetCount());


Paolo
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.172 seconds.