I need a way to list out all named controls in a wpf application.
In C++ we could use the resources file to see a list of all the controls on a form(or so I'm told). I need a similar way to see the a list of controls in a wpf application. The names will be used in a database, so it doesn't matter how I get them, I just need to automate it so I don't miss or misspell any.
Does anyone have any ideas on how to do this? Might there be a tool out there somewhere that could read xaml files and pick out the names?