当前位置:  开发笔记 > 编程语言 > 正文

C#WPF自定义控件在设计时没有响应XAML属性?

如何解决《C#WPF自定义控件在设计时没有响应XAML属性?》经验,为你挑选了1个好方法。

我创建了一个UserControl,它本质上是一个按钮.它上面有一个Image和一个Label,我创建了两个属性来设置Image的源和Label的文本,如下所示:

        public ImageSource Icon
    {
        get { return (ImageSource)this.GetValue(IconProperty); }
        set { this.SetValue(IconProperty, value); icon.Source = value; }
    }
    public static readonly DependencyProperty IconProperty = DependencyProperty.Register("Icon", typeof(ImageSource), typeof(NavigationButton));

    public string Text
    {
        get { return (string)this.GetValue(TextProperty); }
        set { this.SetValue(TextProperty, value); label.Content = value; }
    }

    public static readonly DependencyProperty TextProperty = DependencyProperty.Register("Text", typeof(string), typeof(NavigationButton));

但是,当我将控件添加到我的页面时,控件不会响应我在XAML中设置的任何属性,例如public ImageSource Icon { get { return (ImageSource)this.GetValue(IconProperty); } set { this.SetValue(IconProperty, value); } } public static readonly DependencyProperty IconProperty = DependencyProperty.Register("Icon", typeof(ImageSource), typeof(NavigationButton), new FrameworkPropertyMetadata(OnIconChanged)); private static void OnIconChanged(DependencyObject dependencyObject, DependencyPropertyChangedEventArgs e) { //do whatever you want here - the first parameter is your DependencyObject }

编辑

在我的第一个答案中,我假设你的控件的XAML(无论是从模板还是直接在UserControl中)都正确地连接到属性.你还没有向我们展示XAML,所以这可能是一个不正确的假设.我希望看到类似的东西:


    
    

并且 - 重要的是 - 您的DataContext必须设置为控件本身.您可以通过各种不同的方式执行此操作,但这是一个从后面的代码设置它的一个非常简单的示例:

public YourControl()
{
    InitializeComponent();
    //bindings without an explicit source will look at their DataContext, which is this control
    DataContext = this;
}

推荐阅读
ERIK又
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有