Hello,
I use a ListView which has a SwitchCell as an ItemTemplate in it. I want to set IsEnabled = "false" but it has no effect on it.
<ListView x:Name ="IndicationFilter" ItemsSource="{Binding IndicationList}">
<ListView.ItemTemplate>
<DataTemplate>
<SwitchCell Text="{Binding Name}" On="{Binding Selected, Mode=TwoWay}" IsEnabled="False" OnChanged="FilterChanged"/>
</DataTemplate>
</ListView.ItemTemplate>
</ListView>
On a normal Switch Element it works and the Button is disabled.