我有一个可以水平滚动页面的 FlipVIew。每个页面都包含一个带有 ItemsControl 的 ScrollViewer(垂直滚动)。itemsControl 包含一个 itemTemplate,它是一行(每个页面包含数据行)。
I want to change the template of a row at some button click
. 现在我有 1 种类型的行,但我想实现另外 2 种类型,但不知道如何......基本上当前行类型是通过 DataTemplate 定义的,我想定义另外 2 个 DataTemplate 并将 dataTemplate 绑定到 ItemsControl。项目模板
<ItemsControl x:Name="RowItemsControl" ItemsSource="{Binding OptionItems, Mode=OneWay}" Visibility="{Binding OptionsPageVisibility}">
<ItemsControl.ItemTemplate>
<DataTemplate x:Name="RowType1">
<Grid x:Name="OptionItemGrid" Background="White" HorizontalAlignment="Stretch">
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*" />
<ColumnDefinition Width="*" />
<ColumnDefinition Width="*" />
<ColumnDefinition Width="*" />
<ColumnDefinition Width="*" />
</Grid.ColumnDefinitions>
<!-- here is the content of the rowType1 -->
</Grid>
</DataTemplate>
<!--<DataTemplate x:Name="RowType2"> --- I want just 1 of these 3 data to be my item template
</DataTemplate x:Name="RowType2">
<DataTemplate x:Name="RowType3">
</DataTemplate x:Name="RowType3"> -->
</ItemsControl.ItemTemplate>
</ItemsControl>