I would like to be able to easily navigate from the XAML code:
<Binding Path="Duration">
to the corresponding C# code for the property:
public static DependencyProperty DurationProperty =
DependencyProperty.Register("Duration", typeof(int), typeof(MainWindow));
The closest I seem to be able to do is to go to the file containing the code and then I have to perform a text search. Seems like there ought to be a better way.
The answer is probably already out there but I haven't gotten the correct combination of keywords to find it yet.