D
Dave Calkins
I have a native Win32 C++ app built with Visual Studio 2005. I'd like to
make use of a property grid control in this app. For an example of this, in
Visual Studio, see the properties control (select something in a dialog from
the dialog editor or a class from the class list and hit F4).
I used Spy++, which revealed that the window class of the property grid
control used by Visual Studio is "WindowsForms10.Window.8.app.0.378734a".
So, I'm assuming this is a .NET control.
I found the System.Windows.Forms.PropertyGrid class
(http://msdn.microsoft.com/library/d...fsystemwindowsformspropertygridclasstopic.asp)
in the MSDN library, which seems to be the correct control to do the job.
Whats the easiest way to go about using this .NET control in my native C++
app? I'm assuming I can do this using mixed-mode, etc., but was hoping for
a pointer in the right direction wrt how to go about doing this.
I understand that this will force a dependency on having the .NET runtime
installed and I'm ok with that.
Thanks,
Dave
make use of a property grid control in this app. For an example of this, in
Visual Studio, see the properties control (select something in a dialog from
the dialog editor or a class from the class list and hit F4).
I used Spy++, which revealed that the window class of the property grid
control used by Visual Studio is "WindowsForms10.Window.8.app.0.378734a".
So, I'm assuming this is a .NET control.
I found the System.Windows.Forms.PropertyGrid class
(http://msdn.microsoft.com/library/d...fsystemwindowsformspropertygridclasstopic.asp)
in the MSDN library, which seems to be the correct control to do the job.
Whats the easiest way to go about using this .NET control in my native C++
app? I'm assuming I can do this using mixed-mode, etc., but was hoping for
a pointer in the right direction wrt how to go about doing this.
I understand that this will force a dependency on having the .NET runtime
installed and I'm ok with that.
Thanks,
Dave