我创建了一个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中设置的任何属性,例如 编辑 在我的第一个答案中,我假设你的控件的XAML(无论是从模板还是直接在UserControl中)都正确地连接到属性.你还没有向我们展示XAML,所以这可能是一个不正确的假设.我希望看到类似的东西: 并且 - 重要的是 - 您的DataContext必须设置为控件本身.您可以通过各种不同的方式执行此操作,但这是一个从后面的代码设置它的一个非常简单的示例:public YourControl()
{
InitializeComponent();
//bindings without an explicit source will look at their DataContext, which is this control
DataContext = this;
}