Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在我们正在设置的上下文菜单中使用样式,Property="MenuItem.Icon"我们正在使用绑定作为它的值,在绑定中我使用转换器类来设置图像源,但我面临这个问题。请帮忙。
Property="MenuItem.Icon"
我不确定你所说的conventer是什么意思,但也许这个简单的例子可以帮助你:
<Window.Resources> <Image x:Key="Icon" Source="Icon.ico"/> <Style x:Key="MenuItem"> <Setter Property="MenuItem.Icon" Value="{DynamicResource Icon}"/> </Style> </Window.Resources>