我创建了一个基于TextBox的控件,如下所示:
public class DelayedTextBox : TextBox
{
public ICommand DelayedTextChangedCommand
{
get;
set;
}
}
然后我使用以下代码创建Foo.xaml:
<h:DelayedTextBox DelayedTextChangedCommand="{Binding FooCommand}"/>
我有FooViewModel(它在XAML中正确连接,因为其他部分可以绑定到FooViewModel中的属性),具有:
private ICommand _fooCommand;
public ICommand FooCommand
{
get
{
if (_fooCommand == null)
{
_fooCommand = new RelayCommand(CheckFoo, () => CanExecuteFooCheck());
}
return _fooCommand;
}
}
我正在使用GalaSoft.MvvmLight的RelayCommand,它适用于我项目中的其他命令
当我运行我的项目时,在加载Foo.xaml时出现以下错误:
WinRT信息:无法分配给属性 &#39; TestApp.Helpers.DelayedTextBox.DelayedTextChangedCommand&#39 ;. [行:29 位置:103]类型的例外 &#39; Windows.UI.Xaml.Markup.XamlParseException&#39;发生在TestApp.exe中 但未在用户代码中处理WinRT信息:无法分配 财产 &#39; TestApp.Helpers.DelayedTextBox.DelayedTextChangedCommand&#39 ;. [行:29 位置:103]与此错误代码关联的文本不能 找到。
无法分配属性 &#39; TestApp.Helpers.DelayedTextBox.DelayedTextChangedCommand&#39 ;. [行:29 位置:103]
我非常困惑为什么它不能正确绑定,我做错了什么?
答案 0 :(得分:1)
问题是我没有在我的问题的评论中提到的@Lynn Crumbling中添加了dependencyProperty。
将以下内容添加到DelayedTextBox可以解决问题:
public static readonly DependencyProperty DelayedTextChangedCommandProperty =
DependencyProperty.Register(
"DelayedTextChangedCommand",
typeof(ICommand),
typeof(DelayedTextBox),
new PropertyMetadata(0));