I would like to be able to easily navigate from 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 can do is go to the file containing the code and then do a text search. There seems to be a better way.
The answer probably already exists, but I have not yet received the right combination of keywords to find it.
source
share