更新DependencyProperty setter中的UserControl子节点不起作用

时间:2015-08-31 12:45:13

标签: c# visual-studio-2010 silverlight data-binding user-controls

我的Silverlight应用程序中有一个UserControl,出于某种原因,如果我将它绑定到视图模型中的值,则不会设置UserControl的DependencyProperty。我现在花了几个小时的时间以一种反复试验的方式进行调试,我想知道下一步该尝试什么。

我可以使用

在新的Silverlight项目中重现该问题

MainPage.xaml中

<UserControl x:Class="SilverlightApplication1.MainPage"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    xmlns:local="clr-namespace:SilverlightApplication1"
    mc:Ignorable="d"
    d:DesignHeight="300" d:DesignWidth="400">

    <Grid x:Name="LayoutRoot" Background="White">
        <StackPanel>
            <local:MyCtrl HeaderText="{Binding HeaderText}"/>
            <TextBlock Text="{Binding HeaderText}"/>
        </StackPanel>
    </Grid>
</UserControl>

MainPage.xaml.cs中

using System.Windows.Controls;

namespace SilverlightApplication1
{
    public class Vm
    {
        public string HeaderText 
        { get; set; }
    }

    public partial class MainPage : UserControl
    {
        public MainPage()
        {
            InitializeComponent();
            DataContext = new Vm() { HeaderText = "My Header" };
        }
    }
}

MyCtrl.xaml(添加为新的&#34; Silverlight用户控件&#34;)

<UserControl x:Class="SilverlightApplication1.MyCtrl"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    mc:Ignorable="d"
    d:DesignHeight="300" d:DesignWidth="400">

    <Grid x:Name="LayoutRoot" Background="White">
        <TextBlock x:Name="txtHeader" />
    </Grid>
</UserControl>

MyCtrl.xaml.cs

using System.Windows;
using System.Windows.Controls;

namespace SilverlightApplication1
{
    public partial class MyCtrl : UserControl
    {
        public MyCtrl()
        {
            InitializeComponent();
        }

        public static readonly DependencyProperty HeaderTextProperty = DependencyProperty.Register(
            "HeaderText", typeof(string), typeof(MyCtrl), null);

        public string HeaderText
        {
            get { return (string)GetValue(HeaderTextProperty); }
            set
            {
                // NEVER CALLED
                SetValue(HeaderTextProperty, value);
                this.txtHeader.Text = value;
            }
        }
    }
}

项目的其余部分使用&#34;原样&#34;,即没有更改编译器选项,服务器部分也被保留&#34;原样&#34;。

观察:

  • 我看到绑定期间调用了Vm.HeaderText的getter 操作,但永远不会调用DependencyProperty MyCtrl.HeaderText的setter。
  • 自定义控件下面的MainPage中的TextBlock正确显示绑定值。
  • 没有编译器警告。
  • 没有抛出异常。
  • 应用程序运行时没有调试输出。

这感觉就像重要的事情是默默地失败在它不应该的地方。

2 个答案:

答案 0 :(得分:1)

好吧,好像你无法更新DependencyProperty setter中的子控件(知道为什么以及这是否是指定的行为会很有趣...)

使用它代替工作:

public static readonly DependencyProperty HeaderTextProperty = DependencyProperty.Register(
    "HeaderText", typeof(string), typeof(MyCtrl), new PropertyMetaData(OnHeaderTextChanged));

public string HeaderText
{
    get { return (string)GetValue(HeaderTextProperty); }
    set { SetValue(HeaderTextProperty, value); }
}

private static void OnHeaderTextChanged(DependencyObject d,
    DependencyPropertyChangedEventArgs e)
{
    var ctrl = d as MyCtrl;
    ctrl.txtHeader.Text = (string)e.NewValue;
}

答案 1 :(得分:1)

也许我可以对你的观察和假设有所了解:

  • 可以更新DependencyProperty setter中的子控件。打电话给你的二传手,亲自看看,将进行更新。您错误地认为绑定引擎有义务调用您的setter。好吧,它只是在你的控件上调用SetValue(HeaderTextProperty, newValue);,不需要调用setter。

  • 您的观察是指定行为。

  • 正如您所知,正确的做法是使用propertyChanged回调。

  • 绑定引擎调用viewmodel Vm.HeaderText上的属性getter,因为您的viewmodel不是DependencyObject而HeaderText没有DependencyProperty所以没有{{1}并且没有SetValue(...)

  • 您无法看到任何编译器警告或异常,也无法无声地失败,因为您的方案没有任何问题。