如果我将ViewModel定义为以下内容:
public class MainViewModel : DynamicObject
{
public Dictionary<string, string> Attributes { get; set; }
public MainViewModel()
{
Attributes = new Dictionary<string, string>();
Attributes["Welcome"] = "Welcome to MVVM Light";
}
public override bool TryGetMember(GetMemberBinder binder, out object result)
{
if (Attributes.ContainsKey(binder.Name))
{
result = Attributes[binder.Name];
}
else
result = "";
return true;
}
}
在Silverlight中,我收到以下错误:
System.Windows.Data Error: BindingExpression path error: 'Welcome' property not found on 'DictionaryBasedVM.ViewModel.MainViewModel' 'DictionaryBasedVM.ViewModel.MainViewModel' (HashCode=30542218). BindingExpression: Path='Welcome' DataItem='DictionaryBasedVM.ViewModel.MainViewModel' (HashCode=30542218); target element is 'System.Windows.Controls.TextBlock' (Name=''); target property is 'Text' (type 'System.String')..
同样适用于WPF。
答案 0 :(得分:1)
试试这个“{Binding Attributes [Welcome]}”
答案 1 :(得分:1)
问题是DynamicObject
仅在类型为dynamic
的标识符保存时才会发挥作用。
然而,Silverlight Xaml处理与object
而非dynamic
一起使用,并使用反射来确定所需的属性信息。
Oliver指出的一个选择是使用Silverlight与基于string
的索引器一起工作的能力。