我有:
<ItemsControl ItemsSource="{Binding Blocks}">
<ItemsControl.ItemTemplate>
<DataTemplate>
<StackPanel>
<TextBlock Text="{Binding Name}"/>
<StackPanel>
</DataTemplate>
</ItemsControl.ItemTemplate>
</ItemsControl>
类块具有属性string Name
和bool Visible
。
当Visible属性发生变化时,添加到此xaml以动画项目消失并出现的内容是什么? (例如,通过减少/增加项目的高度 - slideToggle)