ICustomTypeDescriptor генерирует исключение аргумента при реализации - PullRequest
1 голос
/ 01 февраля 2011

Я хочу исключить свойство MiddleName из просматриваемых свойств в моей PropertyGrid.

Когда я слоняюсь по интерфейсу ICustomTypeDescriptor в моем классе Person, я получаю это исключение при запуске приложения.

Что я не прав?

System.ArgumentException: Невозможно выполнить привязку к свойству или столбцу TestNamefür в источнике данных. Parametername: dataMember bei System.Windows.Forms.BindToObject.CheckBinding () bei System.Windows.Forms.Binding.SetListManager (BindingManagerBase bindingManagerBase) bei System.Windows.Forms.ListManagerBindingsCollection.AddCore (Binding dataBinding)

public class Person : ICustomTypeDescriptor
{
    public string TestName { get; set; }
    public string FirstName { get; set; }
    public string MiddleName { get; set; }
    public string LastName { get; set; }

    AttributeCollection ICustomTypeDescriptor.GetAttributes()
    {
      return TypeDescriptor.GetAttributes(this, true);
    }
    string ICustomTypeDescriptor.GetClassName()
    {
      return TypeDescriptor.GetClassName(this, true);
    }
    string ICustomTypeDescriptor.GetComponentName()
    {
      return TypeDescriptor.GetComponentName(this, true);
    }
    TypeConverter ICustomTypeDescriptor.GetConverter()
    {
      return TypeDescriptor.GetConverter(this, true);
    }
    EventDescriptor ICustomTypeDescriptor.GetDefaultEvent()
    {
      return TypeDescriptor.GetDefaultEvent(this, true);
    }
    PropertyDescriptor ICustomTypeDescriptor.GetDefaultProperty()
    {
      return TypeDescriptor.GetDefaultProperty(this, true);
    }
    object ICustomTypeDescriptor.GetEditor(Type editorBaseType)
    {
      return TypeDescriptor.GetEditor(this, editorBaseType, true);
    }
    EventDescriptorCollection ICustomTypeDescriptor.GetEvents(Attribute[] attributes)
    {
      return TypeDescriptor.GetEvents(this, attributes, true);
    }
    EventDescriptorCollection ICustomTypeDescriptor.GetEvents()
    {
      return TypeDescriptor.GetEvents(this, true);
    }
    PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties(Attribute[] attributes)
    {
      Debug.Print("GetProperties()");
      Print("Attributes is {0}null", attributes == null ? "" : "not ");
      PropertyDescriptorCollection origCol = TypeDescriptor.GetProperties(this, attributes, true);
      bool wantBrowsable = attributes.Contains<Attribute>(new BrowsableAttribute(true));
      Debug.Print("Wants Browsable: {0}", wantBrowsable);
      List<PropertyDescriptor> newCol = new List<PropertyDescriptor>();
      foreach (PropertyDescriptor pd in origCol)
      {
        System.Diagnostics.Debug.Print("Property Name: {0}", pd.Name);
        if (pd.Name != "MiddleName")
        {
          System.Diagnostics.Debug.Print("Property {0} is included.", pd.Name);
          newCol.Add(pd);
        }
      }
      return new PropertyDescriptorCollection(newCol.ToArray());
    }
    PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties()
    {
      return ((ICustomTypeDescriptor)this).GetProperties(null);
    }
    object ICustomTypeDescriptor.GetPropertyOwner(PropertyDescriptor pd)
    {
      return this;
    }
}

ОБНОВЛЕНИЕ + РЕШЕНИЕ:

Свойства, отмеченные Browseable(false), не могут быть связаны! поэтому я сделал это:

Почему атрибут Browsable делает свойство не привязываемым?

Последнее решение от Марк Гравелл сработало как вздох!

1 Ответ

0 голосов
/ 01 февраля 2011

Я проверял ваш код, похоже, работает в моем тесте. Возможно, нам нужно больше вашего кода, чтобы понять, в чем проблема.

В любом случае, если ваша единственная цель - просто скрыть свойство MiddleName от Propertygrid, почему бы просто не добавить атрибут [Browsable(false) в это свойство вместо реализации ICustomTypeDescriptor?

Это избавит вас от большого количества кода ...

EDIT:

Я имею в виду, такой код должен работать:

public class Person
{
    public string TestName { get; set; }

    public string FirstName { get; set; }

    [Browsable(false)]
    public string MiddleName { get; set; }

    public string LastName { get; set; }
}

и должен правильно скрывать MiddleName свойство из сетки свойств ...

...