我想将图标绑定到动态创建这些项目的MenuItem控件。我尝试将x:Shared属性设置为False,但始终只有最后一项具有图标。
这是我的MenuItems ItemContainerStyle代码的样式:
<Window.Resources>
<Style TargetType="{x:Type MenuItem}" x:Key="MenuItemStyle" x:Shared="False">
<Setter Property="Icon">
<Setter.Value>
<Image Source="{Binding IconSource}" />
</Setter.Value>
</Setter>
</Style>
</Window.Resources>
MenuItem定义:
<MenuItem Header="Workspaces" ItemsSource="{Binding WorkspaceItems}" Icon="{StaticResource BranchIcon}" ItemContainerStyle="{StaticResource MenuItemStyle}" />
我已经尝试在Image控件上设置此Shared属性,但没有运气。
有什么建议吗?
答案 0 :(得分:3)
你快到了!
首先:不要被Template vs Style.
混淆将Icon属性设置为Image控件时,只会创建一个副本。由于控件只能有一个父控件,因此每次重新分配时都会从上一个父控件中删除它。
这就是为什么你只看到一个图标。
您有两种解决方案可以满足您的需求:
在您的示例中,唯一的错误是Shared属性在Image资源上应该为false,而不是整个样式。这应该有效:
<Window.Resources>
<Image x:Key="MenuIconImage" x:Shared="false" Source="{Binding IconSource}"/>
<Style TargetType="{x:Type MenuItem}" x:Key="MenuItemStyle" BasedOn="{StaticResource {x:Type MenuItem}}">
<Setter Property="Icon" Value="{StaticResource MenuIconImage}">
</Setter>
</Style>
</Window.Resources>
希望它有所帮助。