在我的应用程序中,我有一个CheckBox
,我想在选中时显示一个DataTemplate
,在未选中时显示另一个。
这是带有两个模板的片段
<DataGrid x:Name="dataGrid" LoadingRow="dataGrid_LoadingRow_1" ItemsSource="{Binding Item3}"
<DataGrid.RowHeaderTemplate>
<DataTemplate>
<TextBlock Text="{Binding StudentId}"/>
</DataTemplate>
<DataTemplate>
<TextBlock Text="{Binding FullName}"/>
</DataTemplate>
</DataGrid.RowHeaderTemplate>
</DataGrid>
我不知道如何实现它,但我认为我需要INotifyPropertyChanged
我的用户控件中的接口来触发或者只是确定什么时候发生了变化。