views:

19

answers:

1

C# WinApps:

what is a tool or debugger that I can use to see the name and values of the controls that I have drawn on the form at run time - I mean when I run my program I want to be able to use that tool and hover over controls on the form and that program show me the name and value of that control.

+1  A: 

Look for Spy++

Sander Rijken
Will Spy++ be able to figure that sort of stuff out for managed code?
David Pfeffer
yeah, underneath they're all GDI+ objects. For WPF it's a different story
Sander Rijken