0

Is there a way for me to see what c# methods are being called when debugging a xaml based app in visual studio? For example, when I click a button is there a way for me to see what method was called?

SKLAK
  • 3,825
  • 9
  • 33
  • 57

1 Answers1

0

Look for the "Call Stack" window. It seems to be exactly what you are looking for. Another possibility is to use debug outputs or breakpoints.

lal12
  • 131
  • 10