我有一个带有文本框的用户控件。我试图通过在 UserControl 中实现具有相同名称的 DependencyProperty 来公开 texbox 的 Text 属性。因此:
public static readonly DependencyProperty TextProperty =
DependencyProperty.Register("Text",
typeof(string),
typeof(UserControlWithTextBox),
new UIPropertyMetadata(string.Empty));
public string Text
{
get { return (string)GetValue(TextProperty); }
set
{
SetValue(TextProperty, value);
textBox.Text = value;
}
}
get 部分似乎在我的应用程序中工作正常。但是,我尝试使用转换器将按钮的 IsEnabled 属性绑定到其中两个 UserControls 的 Text 属性,该转换器将检查两个 UserControls 的 Text 属性是否都是空字符串。加载应用程序窗口时出现以下错误:
System.InvalidCastException 未处理 Message="无法将 MS.Internal.NamedObject 类型的对象转换为 System.String 类型。"
Convert 方法如下所示:
public object Convert(object[] values, Type targetType, object parameter, CultureInfo culture)
{
return (string) values[0] != string.Empty &&
(string) values[1] != string.Empty;
}
抛出异常时,values[0] 和 values[1] 都具有值 DependencyProperty.UnsetValue。
我哪里出错了?