Is there a build in way to disable / gray out a ViewCell in a ListView? I have been looking trough the documentation but I couldn't find anything. Here is what I have so far.
<ListView x:Name="lvNotes" ItemSelected="OnSelection">
<ListView.ItemTemplate>
<DataTemplate>
<TextCell Text="{Binding Object.Name}" Detail="{Binding Object.Subject}"/>
</DataTemplate>
</ListView.ItemTemplate>
</ListView>