I have a button on my WPF screen (xaml below). When I press F12 on the CallMethodAction MethodName (BtnLoginClick) it says "cannot navigate to definition" If I press F12 on the Content (ButtonText) it navigates to the property in my viewmodel cs file. Is there some option/setting to make the F12 navigation work for the CallMethodAction?
<Button
Content="{Binding ButtonText}"
d:Content="Login"
Grid.Row="3"
x:Name="BtnLogin"
Width="120"
HorizontalAlignment="Left">
<i:Interaction.Triggers>
<i:EventTrigger EventName="Click">
<i:CallMethodAction MethodName="BtnLoginCick" TargetObject="{Binding}" >
</i:CallMethodAction>
</i:EventTrigger>
</i:Interaction.Triggers>
</Button>
