带图像的 MenuItem 样式
我有 MenuItem 的样式:
<Style x:Key="mainMenuItem"
TargetType="{x:Type Resources:MainMenuItem}">
</Style>
如何为 Icon 属性设置 TemplateBinding ImageSource? 我有 MainMenuItem.cs:
public class MainMenuItem : MenuItem
{
public static readonly DependencyProperty ImageSourceProperty =
DependencyProperty.Register(
"ImageSource",
typeof (ImageSource),
typeof (MainMenuItem),
new UIPropertyMetadata(null));
public ImageSource ImageSource
{
get { return (ImageSource) GetValue(ImageSourceProperty); }
set { SetValue(ImageSourceProperty, value); }
}
}
I have style for MenuItem:
<Style x:Key="mainMenuItem"
TargetType="{x:Type Resources:MainMenuItem}">
</Style>
How can I set TemplateBinding ImageSource for the Icon Property?
I have MainMenuItem.cs:
public class MainMenuItem : MenuItem
{
public static readonly DependencyProperty ImageSourceProperty =
DependencyProperty.Register(
"ImageSource",
typeof (ImageSource),
typeof (MainMenuItem),
new UIPropertyMetadata(null));
public ImageSource ImageSource
{
get { return (ImageSource) GetValue(ImageSourceProperty); }
set { SetValue(ImageSourceProperty, value); }
}
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以完全忽略
Icon
属性,并为Template
创建一个Setter
,在其中定义Image
前面有一个绑定到ImageSource
的模板,或者您可以在创建Image
的ImageSource
上注册一个依赖属性更改的回调,并且将其设置为图标
。You could just completely ignore the
Icon
property and create aSetter
for theTemplate
in which you define anImage
in the front which has a template binding toImageSource
, or you could register a dependency property changed callback on theImageSource
in which you create anImage
and set it as theIcon
.