5

该文档仍然有效还是我遗漏了什么?

http://doc.xceedsoft.com/products/XceedWpfToolkit/Xceed.Wpf.Toolkit~Xceed.Wpf.Toolkit.PropertyGrid.PropertyGrid~SelectedObjects.html

PropertyGrid控件似乎没有SelectedObjectsSelectedObjectsOverride成员。我正在使用针对 .NET Framework 4.0 的工具包的最新版本 (2.5)。

更新

@faztp12 的回答让我通过了。对于其他正在寻找解决方案的人,请按照以下步骤操作:

  1. PropertyGrid将您的属性绑定SelectedObject到第一个选定的项目。像这样的东西:

    <xctk:PropertyGrid PropertyValueChanged="PG_PropertyValueChanged" SelectedObject="{Binding SelectedObjects[0]}"  />
    
  2. 监听PropertyValueChanged事件PropertyGrid并使用以下代码更新所有选定对象的属性值。

    private void PG_PropertyValueChanged(object sender, PropertyGrid.PropertyValueChangedEventArgs e)
    {
      var changedProperty = (PropertyItem)e.OriginalSource;
    
      foreach (var x in SelectedObjects) {
        //make sure that x supports this property
        var ProperProperty = x.GetType().GetProperty(changedProperty.PropertyDescriptor.Name);
    
        if (ProperProperty != null) {
    
          //fetch property descriptor from the actual declaring type, otherwise setter 
          //will throw exception (happens when u have parent/child classes)
          var DeclaredProperty = ProperProperty.DeclaringType.GetProperty(changedProperty.PropertyDescriptor.Name);
    
          DeclaredProperty.SetValue(x, e.NewValue);
        }
      }
    }
    

希望这对未来的人有所帮助。

4

1 回答 1

2

当我遇到类似问题时,我所做的就是订阅PropertyValueChangedList充满了SelectedObjects.

我检查了 List 的内容是否属于同一类型,如果是,我更改了每个项目中的属性:

PropertyItem changedProperty = (PropertyItem)e.OriginalSource;
PropertyInfo t = typeof(myClass).GetProperty(changedProperty.PropertyDescriptor.Name);
                if (t != null)
                {
                    foreach (myClass x in SelectedItems)
                        t.SetValue(x, e.NewValue);
                }

我使用它是因为我需要制作一个布局设计器,这使我能够一起更改多个项目的属性:)

希望它有所帮助:)

参考Xceed 文档

于 2015-10-08T08:41:25.390 回答