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
2009-09-11 07:04:16
Can I somehow use it with VS2003?
Naveen
2009-09-11 07:09:37
In VS2003 you could use PropertyGrid from .NET using CWinFormsControl.
Kirill V. Lyadvinsky
2009-09-11 07:11:42
+3
A:
You need VS2008 and the feature pack, it's called CMFCPropertyGridCtrl
demoncodemonkey
2009-09-11 07:06:23