36

我正在尝试在 WPF 数据网格中显示查询结果。我绑定的 ItemsSource 类型是IEnumerable<dynamic>. 由于返回的字段直到运行时才确定,所以在评估查询之前我不知道数据的类型。每个“行”都以ExpandoObject具有表示字段的动态属性的形式返回。

我希望AutoGenerateColumns(如下所示)能够ExpandoObject像使用静态类型一样生成列,但它似乎没有。

<DataGrid AutoGenerateColumns="True" ItemsSource="{Binding Results}"/>

无论如何要以声明方式执行此操作,还是我必须强制使用某些 C#?

编辑

好的,这将为我提供正确的列:

// ExpandoObject implements IDictionary<string,object> 
IEnumerable<IDictionary<string, object>> rows = dataGrid1.ItemsSource.OfType<IDictionary<string, object>>();
IEnumerable<string> columns = rows.SelectMany(d => d.Keys).Distinct(StringComparer.OrdinalIgnoreCase);
foreach (string s in columns)
    dataGrid1.Columns.Add(new DataGridTextColumn { Header = s });

所以现在只需要弄清楚如何将列绑定到 IDictionary 值。

4

4 回答 4

30

最终我需要做两件事:

  1. 从查询返回的属性列表中手动生成列
  2. 设置 DataBinding 对象

之后,内置数据绑定启动并运行良好,并且似乎没有任何问题将属性值从ExpandoObject.

<DataGrid AutoGenerateColumns="False" ItemsSource="{Binding Results}" />

// Since there is no guarantee that all the ExpandoObjects have the 
// same set of properties, get the complete list of distinct property names
// - this represents the list of columns
var rows = dataGrid1.ItemsSource.OfType<IDictionary<string, object>>();
var columns = rows.SelectMany(d => d.Keys).Distinct(StringComparer.OrdinalIgnoreCase);

foreach (string text in columns)
{
    // now set up a column and binding for each property
    var column = new DataGridTextColumn 
    {
        Header = text,
        Binding = new Binding(text)
    };

    dataGrid1.Columns.Add(column);
}
于 2010-01-02T04:46:58.273 回答
6

这里的问题是 clr 将为 ExpandoObject 本身创建列 - 但不能保证一组 ExpandoObject 彼此之间共享相同的属性,没有规则让引擎知道需要创建哪些列。

也许像 Linq 匿名类型这样的东西更适合你。我不知道您使用的是哪种数据网格,但它们的绑定应该是相同的。这是 Telerik 数据网格的一个简单示例。
链接到 Telerik 论坛

这实际上并不是真正的动态,需要在编译时知道类型 - 但这是在运行时设置此类内容的简单方法。

如果您真的不知道您将显示什么样的字段,问题就会变得更加棘手。可能的解决方案是:

使用动态 linq,您可以在运行时使用字符串创建匿名类型 - 您可以从查询结果中组装。第二个链接的示例用法:

var orders = db.Orders.Where("OrderDate > @0", DateTime.Now.AddDays(-30)).Select("new(OrderID, OrderDate)");

无论如何,基本思想是以某种方式将 itemgrid 设置为对象的集合,这些对象的共享公共属性可以通过反射找到。

于 2009-12-31T18:36:20.667 回答
4

我对 Xaml 中的动态列绑定的回答

我使用了一种遵循此伪代码模式的方法

columns = New DynamicTypeColumnList()
columns.Add(New DynamicTypeColumn("Name", GetType(String)))
dynamicType = DynamicTypeHelper.GetDynamicType(columns)

DynamicTypeHelper.GetDynamicType() 生成具有简单属性的类型。有关如何生成此类类型的详细信息,请参阅此帖子

然后要实际使用该类型,请执行以下操作

Dim rows as List(Of DynamicItem)
Dim row As DynamicItem = CType(Activator.CreateInstance(dynamicType), DynamicItem)
row("Name") = "Foo"
rows.Add(row)
dataGrid.DataContext = rows
于 2009-12-31T19:08:37.027 回答
2

尽管 OP 有一个接受的答案,但它使用的答案AutoGenerateColumns="False"与原始问题所要求的并不完全相同。幸运的是,它也可以通过自动生成的列来解决。解决方案的关键是DynamicObject它可以同时具有静态和动态属性:

public class MyObject : DynamicObject, ICustomTypeDescriptor {
  // The object can have "normal", usual properties if you need them:
  public string Property1 { get; set; }
  public int Property2 { get; set; }

  public MyObject() {
  }

  public override IEnumerable<string> GetDynamicMemberNames() {
    // in addition to the "normal" properties above,
    // the object can have some dynamically generated properties
    // whose list we return here:
    return list_of_dynamic_property_names;
  }

  public override bool TryGetMember(GetMemberBinder binder, out object result) {
    // for each dynamic property, we need to look up the actual value when asked:
    if (<binder.Name is a correct name for your dynamic property>) {
      result = <whatever data binder.Name means>
      return true;
    }
    else {
      result = null;
      return false;
    }
  }

  public override bool TrySetMember(SetMemberBinder binder, object value) {
    // for each dynamic property, we need to store the actual value when asked:
    if (<binder.Name is a correct name for your dynamic property>) {
      <whatever storage binder.Name means> = value;
      return true;
    }
    else
      return false;
  }

  public PropertyDescriptorCollection GetProperties() {
    // This is where we assemble *all* properties:
    var collection = new List<PropertyDescriptor>();
    // here, we list all "standard" properties first:
    foreach (PropertyDescriptor property in TypeDescriptor.GetProperties(this, true))
      collection.Add(property);
    // and dynamic ones second:
    foreach (string name in GetDynamicMemberNames())
      collection.Add(new CustomPropertyDescriptor(name, typeof(property_type), typeof(MyObject)));
    return new PropertyDescriptorCollection(collection.ToArray());
  }

  public PropertyDescriptorCollection GetProperties(Attribute[] attributes) => TypeDescriptor.GetProperties(this, attributes, true);
  public AttributeCollection GetAttributes() => TypeDescriptor.GetAttributes(this, true);
  public string GetClassName() => TypeDescriptor.GetClassName(this, true);
  public string GetComponentName() => TypeDescriptor.GetComponentName(this, true);
  public TypeConverter GetConverter() => TypeDescriptor.GetConverter(this, true);
  public EventDescriptor GetDefaultEvent() => TypeDescriptor.GetDefaultEvent(this, true);
  public PropertyDescriptor GetDefaultProperty() => TypeDescriptor.GetDefaultProperty(this, true);
  public object GetEditor(Type editorBaseType) => TypeDescriptor.GetEditor(this, editorBaseType, true);
  public EventDescriptorCollection GetEvents() => TypeDescriptor.GetEvents(this, true);
  public EventDescriptorCollection GetEvents(Attribute[] attributes) => TypeDescriptor.GetEvents(this, attributes, true);
  public object GetPropertyOwner(PropertyDescriptor pd) => this;
}

对于实现,您可以主要以简单的方式ICustomTypeDescriptor使用静态函数。是需要真正实现的:读取现有属性并添加动态属性。TypeDescriptorGetProperties()

作为PropertyDescriptor抽象,你必须继承它:

public class CustomPropertyDescriptor : PropertyDescriptor {
  private Type componentType;

  public CustomPropertyDescriptor(string propertyName, Type componentType)
    : base(propertyName, new Attribute[] { }) {
    this.componentType = componentType;
  }

  public CustomPropertyDescriptor(string propertyName, Type componentType, Attribute[] attrs)
    : base(propertyName, attrs) {
    this.componentType = componentType;
  }

  public override bool IsReadOnly => false;

  public override Type ComponentType => componentType;
  public override Type PropertyType => typeof(property_type);

  public override bool CanResetValue(object component) => true;
  public override void ResetValue(object component) => SetValue(component, null);

  public override bool ShouldSerializeValue(object component) => true;

  public override object GetValue(object component) {
    return ...;
  }

  public override void SetValue(object component, object value) {
    ...
  }
于 2016-02-08T15:54:31.070 回答