带图像的 MenuItem 样式

发布于 2024-12-13 03:23:59 字数 875 浏览 1 评论 0原文

我有 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

第几種人 2024-12-20 03:23:59

您可以完全忽略 Icon 属性,并为 Template 创建一个 Setter,在其中定义 Image前面有一个绑定到 ImageSource 的模板,或者您可以在创建 ImageImageSource 上注册一个依赖属性更改的回调,并且将其设置为图标

You could just completely ignore the Icon property and create a Setter for the Template in which you define an Image in the front which has a template binding to ImageSource, or you could register a dependency property changed callback on the ImageSource in which you create an Image and set it as the Icon.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文