File Linker allows easy and fast navigation between files in the code editor according to naming conventions.
First version implement the navigation between the following files:
First
Second
Example
<Name>ViewModel.cs
<Name>View.xaml
StamViewModel <-> StamView
<Name>PageViewModel.cs
<Name>Page.xaml
StamPageViewModel <-> StamPage
The Linker matches files according to file name, it will first look on the same project (which would be faster) and then on all the files in the solution.
(Second version will include the ability to create your own conventions).
Use:
Right click on the code editor to open the context menu.
Press the "Find Linked File" command.
You can also use the keyboard shortcut - CTRL+F7 (please note that due to technical problem only after the first time you will use the command the shortcut would be enabled as CTRL+F7, before the first use CTRL+M would be utilized).
Revision Log:
1.0
First release, including default convention for View Model <-> View navigation.