I want to add something similar to the the properties window in Visual Studio into my form application. Basically a grid that has a label in the first column and a editable value in the second column. I can't seem to find something like it. Any examples of what to use and/how how to use it would be awesome.
相关问题
- Generic Generics in Managed C++
- How to know full paths to DLL's from .csproj f
- Importing NuGet references through a local project
- How to Debug/Register a Permanent WMI Event Which
- Visual Studio 2019 - error MSB8020: The build tool
The control you are looking for is the PropertyGrid.
I recommend reading Getting the Most Out of the .NET Framework PropertyGrid Control for details on how to work with this control fully, including customizing it for your types.