标签:
FineUI非常好用,但是有一个缺点,就是不支持dynamic对象的数据绑定。查了一下源代码,找了解决方案,其实只需要几行代码就可以搞定,这就是开源的好处。 本想直接在CodePlex上贡献代码,但不知道怎么加入项目,直接写在这儿吧,如果三石觉得有用,可以考虑合并在FineUI的下一个版本中。 这是ObjectUtil类的GetPropertyValue方法,加上4行代码,即可实现对dynamic对象的绑定,有需要的朋友可以试试。 public static object GetPropertyValue(object obj, string propertyName) { object result = null; try { if (obj is DataRow) { result = (obj as DataRow)[propertyName]; } else if (obj is DataRowView) { result = (obj as DataRowView)[propertyName]; } else if (obj is IDictionary<string, object>) //新增的代码--开始 { result = (obj as IDictionary<string, object>)[propertyName]; } //新增的代码--结束 else if (obj is JObject) { result = (obj as JObject).Value<JValue>(propertyName).Value; //.getValue(propertyName); } else { result = GetPropertyValueFormObject(obj, propertyName); } } catch (Exception) { // 找不到此属性 } return result; } 复制代码 分享到: QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾
标签:
原文地址:http://www.cnblogs.com/shiningrise/p/5573025.html