Creating a property grid in MFC

I want to create a property grid (one similar to the one used in the resource editor in VS) using MFC. Does anyone have any built-in support in MFC for this?

+2


source to share


2 answers


You need VS2008 and a package of functions, it is called CMFCPropertyGridCtrl



+3


source


Visual Studio 2008 SP1 CMFCPropertyGridCtrl . But personally I am still using Property Grid from .NET through the C ++ / CLI wrapper class. It seems more convenient to me. You can only compile one file with an option /clr

and use MFC CWinFormsControl in it .



+1


source







All Articles