I\'m looking for something that provides interactive meta-data about a running .NET WinForms application.
Basically, I\'d like to be able to hover over a running Win
Try the nuget package: WinForm.Inspector.Tool
Setup documentation
Instantiate the Inspector in your project.
Inspector inspector = new Inspector();
Ignore specific controls ex. buttons.
inspector.IgnoreTypes = new Type[] { typeof(Button) };
Skip controls ex. invisible and disabled.
inspector.SkipChilds = GetChildAtPointSkip.Invisible | GetChildAtPointSkip.Disabled;
Run your project and press Ctrl + F8 to open the ControlViewer.
Hold down "Alt" and move your mouse over the controllers to select them.