私は次のDataTemplateを持っています
<DataTemplate x:Key="iconButtonsTemplate">
<StackPanel Orientation="Horizontal" Margin="120,50,0,0" HorizontalAlignment="Left" VerticalAlignment="Top" >
<icon:IconButton Command="{Binding Path=DataContext.ButtonClickCommand,RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type UserControl}}}"
CommandParameter="{Binding Path=CommandParameter}" TextContent="{Binding TextContent}" ImageSource="{Binding ImageSource}"
IsIconButtonVisible="{Binding Path=MyLocalBoolList}" />
</StackPanel>
</DataTemplate>
そして、私はそのようなItemsControlも持っています、
<ItemsControl Width="2400" VerticalAlignment="Top" HorizontalAlignment="Left"
ItemsSource="{Binding IconConfigList}" ItemTemplate="{StaticResource iconButtonsTemplate}" >
<ItemsControl.ItemsPanel>
<ItemsPanelTemplate>
<WrapPanel Orientation="Horizontal"/>
</ItemsPanelTemplate>
</ItemsControl.ItemsPanel>
</ItemsControl>
したがって、ItemsControlのIconConfigListから独立してIsIconButtonVisibleプロパティをViewModelにバインドすることは可能ですか。