tags:

views:

286

answers:

2

I want to create a property grid (the one which is similar to the one used in the resource editor in VS) using MFC. Does anybody whether there is any built in support in MFC for this?

+1  A: 

Visual Studio 2008 with SP1 has CMFCPropertyGridCtrl. But personally I still use Property Grid from .NET via C++/CLI wrapper class. It seems more convenient to me. You could compile only one file with /clr option and use MFC CWinFormsControl in it.

Kirill V. Lyadvinsky
Can I somehow use it with VS2003?
Naveen
In VS2003 you could use PropertyGrid from .NET using CWinFormsControl.
Kirill V. Lyadvinsky
+3  A: 

You need VS2008 and the feature pack, it's called CMFCPropertyGridCtrl

demoncodemonkey