我的 VM 具有我的模型的属性Authorization
,它的属性为ActiveService
。
public Authorization Authorization
{
get
{
return this.authorization;
}
set
{
this.authorization = value;
NotifyOfPropertyChange();
}
}
我在 ViewModel 上创建了一个附加属性,调用Services
它来填充下拉列表:
public IList<Service> Services
{
get { return services; }
set
{
services = value;
NotifyOfPropertyChange();
}
}
我的视图有一个combobox
名为Services
. 我对 Caliburn 及其约定的理解是这应该有效。但是它不能正确显示我的项目。它在列表中有正确数量的项目,但它只显示“找不到 Models.Service 的视图”
对我做错了什么有帮助吗?
编辑
所以我现在尝试的是这个;我手动设置 DisplayMemberPath 绑定,如下所示:
DisplayMemberPath="{Binding Authorization_ActiveService_Description}"
然后我像这样Override
向我的Service
对象添加了一个ToString()
:
public override string ToString()
{
return string.Format("{0}", this.Description);
}
这有效,因为它现在在下拉菜单中显示我的描述。不过我有点困惑。我能够删除它_Description
并且它的工作原理相同。如果我删除覆盖它根本不起作用。
为什么它不对我的描述属性进行深度绑定?