Reputation: 8682
i have windowapplication project which contain so many forms ,,i need to debug the application ,,but i dont know which code is related to which UI window,..Is there any way to find the code which correspond to related window
Upvotes: 0
Views: 113
Reputation: 5374
I think you're looking for an easy way to locate the code for a particular form easily without having to go through the entire codebase to determine what code goes with what form. Unfortunately, there are no easy ways that I am aware of. However, there are a couple of things that you can try:
Just a couple of ideas that might helpful.
Upvotes: 1
Reputation: 11770
If you mean other files not related to the UI you can do a "Find all references" when you right click on a specific function. This shows you all places where this function is called.
Upvotes: 1