PropertyGrid ----Third Party tool
-
Dear CPians, I am in need of customized PropertyGrid component_(.NET Compatable)_ with look and feel like the link below http://www.visualhint.com/propertygrid.php If you know any of such controls, Please let me know. I would appreciate your help in this regard. Thanks in advance. Regards, Jay.
-
Dear CPians, I am in need of customized PropertyGrid component_(.NET Compatable)_ with look and feel like the link below http://www.visualhint.com/propertygrid.php If you know any of such controls, Please let me know. I would appreciate your help in this regard. Thanks in advance. Regards, Jay.
As I mentioned to you before[^], you can use either the IL Disassembler (ildasm.exe that comes with the .NET Framework SDK) or a decompiler to find out how the
PropertyGrid
works. I also told you how it uses theSystem.ComponentModel
namespace members to provide it with functionality (which leppie also mentioned), which is what that namespace (and a few related namespaces) are for. The .NET FCL provides a designer with almost everything it needs to design components.Microsoft MVP, Visual C# My Articles
-
As I mentioned to you before[^], you can use either the IL Disassembler (ildasm.exe that comes with the .NET Framework SDK) or a decompiler to find out how the
PropertyGrid
works. I also told you how it uses theSystem.ComponentModel
namespace members to provide it with functionality (which leppie also mentioned), which is what that namespace (and a few related namespaces) are for. The .NET FCL provides a designer with almost everything it needs to design components.Microsoft MVP, Visual C# My Articles
Unfortunately that control is written in native C++, but thats besides the point :) top secret xacc-ide 0.0.1
-
Unfortunately that control is written in native C++, but thats besides the point :) top secret xacc-ide 0.0.1
Actually, I was referring to how you let the
UITypeEditor
s and what-not "do their job". That was the point I was trying to make. :)Microsoft MVP, Visual C# My Articles