I have a DataGrid from an extended WPF toolkit with multiple columns similar to the following:
<xcdg:Column Title="Description" FieldName="Description" Visible="{Binding Source={x:Reference filterDescription}, Path=IsChecked, Converter={StaticResource FilterVisibility}}" />
The problem is that each of these columns shows a design-time error "Link to an object not installed on an object instance" for the Visibility property. Intellisense sees the Visibility property perfectly. Everything is functional, so nothing is really offensive, but I'm up to 26 of these psychological errors, and this sometimes makes me find real pain problems.
Is there a way to get Visual Studio 2012 to shut up about these errors, or somehow convince the IDE that this property is actually intellisense? Is there any special link to the design time?
c # wpf visual-studio-2012 datagrid
jrandomuser
source share