Home > Mobile >  How to distinguish if the message is from Resharper or Visual Studio
How to distinguish if the message is from Resharper or Visual Studio

Time:09-26

The text is in italian, but the literal translation would be: the member wasn't fount in the data context ClustersManagementTabDesignViewModel.

enter image description here

<UserControl x:Class="ClustersManagementTabAdapterView"
             xmlns:clusters="clr-namespace:Clusters"
             d:DataContext="{d:DesignInstance Type=clusters:ClustersManagementTabDesignViewModel}"
             mc:Ignorable="d" Background="White">

    <telerik:RadGridView SelectedItem="{Binding SelectedItem, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" 
                         ItemsSource="{Binding ItemsCollection, Mode=OneWay}">
        <telerik:RadGridView.Columns>
            <telerik:GridViewDataColumn Header="Nome Cluster" DataMemberBinding="{Binding ClusterName}"  Width="auto"/>
        </telerik:RadGridView.Columns>
    </telerik:RadGridView>
</UserControl>

CodePudding user response:

This is not from ReSharper - it does not support any other languages except english. Easy way to check if an inspection is from ReSharper is to press "Ctrl-Alt-Shift-8" to disable all ReSharper's analysis in the opened file. Don't forget to press the combitation again to enable the analysis

  • Related