WPF PropertyGrid - добавлена ​​поддержка коллекций - PullRequest
2 голосов
/ 12 мая 2010

Я работаю над элементом управления wpf PropertyGrid (PG) и хочу, чтобы PG поддерживал свойства типа коллекции (IList, ObservableCollection и т. Д.). Я немного запутался в том, как отследить выбранный предмет (из этой коллекции) и передать его клиенту.

Есть идеи?

Если в решении используется PropertyFrid WPF с открытым исходным кодом (http://www.codeplex.com/wpg), я внесу изменения / дополнения обратно в элемент управления.

1 Ответ

2 голосов
/ 10 июня 2010

Отсутствие ответов доказывает, что не существует прямого способа сделать это. Поэтому я реализовал эту функцию следующим образом -

Я создал атрибут с именем RelatedItemSourcePropertyAttribute вот так -

/// <summary>
/// Attribute to identify the related item source property.
/// Note: Property should be of IEnumerable type
/// </summary>
[global::System.AttributeUsage(AttributeTargets.Property, Inherited = true, AllowMultiple = false)]
public sealed class RelatedItemSourcePropertyAttribute : Attribute
{
    // See the attribute guidelines at 
    //  http://go.microsoft.com/fwlink/?LinkId=85236

    private string relatedPropertyName;
    public static readonly RelatedItemSourcePropertyAttribute Default = new RelatedItemSourcePropertyAttribute(string.Empty);

    /// <summary>
    /// Initializes a new instance of the <see cref="RelatedPropertyAttribute"/> class.
    /// </summary>
    /// <param name="relatedPropertyName">Name of the related property.</param>
    public RelatedItemSourcePropertyAttribute(string relatedPropertyName)
    {
        this.relatedPropertyName = relatedPropertyName;
    }

    /// <summary>
    /// Gets a value indicating whether [related property name].
    /// </summary>
    /// <value><c>true</c> if [related property name]; otherwise, <c>false</c>.</value>
    public string RelatedPropertyName
    {
        get { return relatedPropertyName; }
    }

    /// <summary>
    /// Determines whether the specified <see cref="System.Object"/> is equal to this instance.
    /// </summary>
    /// <param name="obj">The <see cref="System.Object"/> to compare with this instance.</param>
    /// <returns>
    ///     <c>true</c> if the specified <see cref="System.Object"/> is equal to this instance; otherwise, <c>false</c>.
    /// </returns>
    public override bool Equals(object obj)
    {
        if (!(obj is RelatedItemSourcePropertyAttribute))
            return false;
        if (obj == this)
            return true;
        return ((RelatedItemSourcePropertyAttribute)obj).relatedPropertyName == relatedPropertyName;
    }

    /// <summary>
    /// Returns a hash code for this instance.
    /// </summary>
    /// <returns>
    /// A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. 
    /// </returns>
    public override int GetHashCode()
    {
        return relatedPropertyName.GetHashCode();
    }

    /// <summary>
    /// When overridden in a derived class, indicates whether the value of this instance is the default value for the derived class.
    /// </summary>
    /// <returns>
    /// true if this instance is the default attribute for the class; otherwise, false.
    /// </returns>
    public override bool IsDefaultAttribute()
    {
        return relatedPropertyName == RelatedItemSourcePropertyAttribute.Default.relatedPropertyName;
    }
}

этот атрибут будет принимать имя свойства связанного свойства источника элемента (значение которого будет использоваться для заполнения раскрывающегося списка). Будет использоваться так -

    [RelatedItemSourceProperty("UnitNames")]
    public virtual string SelectedUnit
    {
        get { return (string)GetValue(SelectedUnitProperty); }
        set { SetValue(SelectedUnitProperty, value); }
    }
    public static readonly DependencyProperty SelectedUnitProperty =
        DependencyProperty.Register("SelectedUnit", typeof(string), typeof(BaseControl),
        new UIPropertyMetadata(string.Empty, new PropertyChangedCallback(SelectedUnitChangedCallBack)));


    public virtual ObservableCollection<string> UnitNames
    {
        get { return (ObservableCollection<string>)GetValue(UnitNamesProperty); }
        set { SetValue(UnitNamesProperty, value); }
    }
    public static readonly DependencyProperty UnitNamesProperty =
        DependencyProperty.Register("UnitNames", typeof(ObservableCollection<string>),
        typeof(BaseProperties), new PropertyMetadata(null)); //Validation

и затем в свойстве я связал свойство источника связанного элемента со списком.

Надеюсь увидеть лучшее решение, чем это:)

...