我创建了一个UserControl,它本质上是一个按钮。它上面有一个图像和一个标签,我创建了两个属性来设置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中设置的任何属性,例如<controls:MusicButton Icon="/SuCo;component/Resources/settings.png/>
什么也没做。
我做错了什么?
答案 0 :(得分:5)
包装依赖项属性的CLR属性应该从不除了调用GetValue
和SetValue
之外还有其他任何逻辑。那是因为他们甚至可能都没有被召唤。例如,XAML编译器将通过直接调用GetValue
/ SetValue
进行优化,而不是使用您的CLR属性。
如果在更改依赖项属性时需要执行某些逻辑,请使用元数据:
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,所以这可能是一个不正确的假设。我希望看到类似的东西:
<StackPanel>
<Image Source="{Binding Icon}"/>
<TextBlock Text="{Binding Text}"/>
</StackPanel>
而且 - 重要的是 - 您的DataContext必须设置为控件本身。您可以通过各种不同的方式执行此操作,但这是一个从后面的代码设置它的非常简单的示例:
public YourControl()
{
InitializeComponent();
//bindings without an explicit source will look at their DataContext, which is this control
DataContext = this;
}
答案 1 :(得分:0)
您是否尝试过设置text属性?图像的来源可能是错误的。文字更直接。
此外,在您的示例中,您错过了引号。因此,如果它是从您的真实代码中复制的,您可能需要检查它。
除非这些小问题不太可能导致您的问题,我建议在代码中设置属性以检查是否有任何影响。如果有,那么你应该检查你的XAML。
由于您尚未发布其余代码,因此我无法确定您是否在其他可能影响控件的地方遇到问题。
是的,我知道我不是很有帮助,但我一直在与WPF合作。希望它无论如何都有帮助。