5

我正在尝试使用System.Windows.Forms.PropertyGrid.

要使属性在此网格中不可见,应使用BrowsableAttributeset to false。但是添加此属性会使该属性不可绑定。

示例:创建一个新的 Windows 窗体项目,然后将 aTextBox和拖放PropertyGridForm1. 使用下面的代码, 的宽度TextBox不会绑定到Data.Width

public partial class Form1 : Form
{
    public Form1()
    {
        InitializeComponent();

        Data data = new Data();
        data.Text = "qwe";
        data.Width = 500;

        BindingSource bindingSource = new BindingSource();
        bindingSource.Add(data);

        textBox1.DataBindings.Add("Text", bindingSource, "Text", true,
            DataSourceUpdateMode.OnPropertyChanged);
        textBox1.DataBindings.Add("Width", bindingSource, "Width", true,
            DataSourceUpdateMode.OnPropertyChanged);

        propertyGrid1.SelectedObject = data;
    }
}

数据类的代码是:

public class Data : IBindableComponent
{
    public event EventHandler TextChanged;
    private string _Text;
    [Browsable(true)]
    public string Text
    {
        get
        {
            return _Text;
        }
        set
        {
            _Text = value;
            if (TextChanged != null)
                TextChanged(this, EventArgs.Empty);
        }
    }

    public event EventHandler WidthChanged;
    private int _Width;
    [Browsable(false)]
    public int Width
    {
        get
        {
            return _Width;
        }
        set
        {
            _Width = value;
            if (WidthChanged != null)
                WidthChanged(this, EventArgs.Empty);
        }
    }

    #region IBindableComponent Members

    private BindingContext _BindingContext;
    public BindingContext BindingContext
    {
        get
        {
            if (_BindingContext == null)
                _BindingContext = new BindingContext();

            return _BindingContext;
        }
        set
        {
            _BindingContext = value;
        }
    }

    private ControlBindingsCollection _DataBindings;
    public ControlBindingsCollection DataBindings
    {
        get 
        {
            if (_DataBindings == null)
                _DataBindings = new ControlBindingsCollection(this);

            return _DataBindings;    
        }
    }

    #endregion

    #region IComponent Members

    public event EventHandler Disposed;

    public System.ComponentModel.ISite Site
    {
        get
        {
            return null;
        }
        set
        {

        }
    }

    #endregion

    #region IDisposable Members

    public void Dispose()
    {
        throw new NotImplementedException();
    }

    #endregion
}

如果在 Data 中的每个属性上将 Browsable 属性切换为 true,它就可以工作。现在似乎 BindingSource 通过 Browsable 属性搜索数据源。

4

2 回答 2

6

根据更新示例更新答案:

我在 Reflector 中进行了一些挖掘,发现“问题”实际上在 中ListBindingHelper,由 使用CurrencyManager,而 又由 使用BindingSource(这些都在System.Windows.Forms命名空间中)。

为了发现可绑定的属性,CurrencyManager调用ListBindingSource.GetListItemProperties. 在引擎盖下,这会调用GetListItemPropertiesByInstance(当您传入单个对象时)。该方法最后有以下代码行:

return TypeDescriptor.GetProperties(target, BrowsableAttributeList);

的实现BrowsableAttributeList是:

private static Attribute[] BrowsableAttributeList
{
    get
    {
        if (browsableAttribute == null)
        {
            browsableAttribute = new Attribute[] { new BrowsableAttribute(true) };
        }
        return browsableAttribute;
    }
}

可以看到,实际上是通过 过滤属性BrowsableAttribute(true)。它可能应该BindableAttribute改用,但我的猜测是设计师意识到每个人都已经依赖BrowsableAttribute并决定改用那个。

所以不幸的是,如果你使用BrowsableAttribute. 您唯一的选择是执行 Marc 的建议并使用 custom TypeConverter,或者使用此问题中的解决方案之一过滤属性网格本身:Programatically Hide Field in PropertyGrid

于 2010-01-12T18:34:23.930 回答
3

BrowsableAttribute被许多组件模型方式用作避免它被包含在内的机制。也许最好的选择是不添加[Browsable(false)].

还有其他几种过滤方法PropertyGrid,包括(越来越复杂)TypeConverter,,ICustomTypeDescriptor-TypeDescriptionProvider但最简单的可能是告诉PropertyGrid描述您想要的事物的属性.BrowsableAttributes,并标记其他属性。

请注意,另一种选择是创建自定义选项卡 - 但根据我的经验,这是命中注定的。

这是一个 using 的示例TypeConverter,它由 使用PropertyGrid,但不是由大多数其他绑定使用;它通过使用自定义类型转换器来工作,该转换器按名称排除特定属性,但您也可以使用类似的东西Attribute.IsDefined来进行屏蔽:

using System.Windows.Forms;
using System;
using System.Linq;
using System.ComponentModel;
static class Program
{
    [STAThread]
    static void Main()
    {
        Application.EnableVisualStyles();
        Data data = new Data { Name = "the name", Value = "the value" };
        using (Form form = new Form
        {
            Controls =
            {
                new PropertyGrid {
                    Dock = DockStyle.Fill,
                    SelectedObject = data
                },
                new TextBox {
                    Dock = DockStyle.Bottom,
                    DataBindings = { {"Text", data, "Value"}, }
                },
                new TextBox {
                    Dock = DockStyle.Bottom,
                    DataBindings = { {"Text", data, "Name"}, }
                }
            }
        })
        {
            Application.Run(form);
        }        
    }
}
[TypeConverter(typeof(DataConverter))]
class Data
{
    class DataConverter : ExpandableObjectConverter
    {
        public override PropertyDescriptorCollection GetProperties(ITypeDescriptorContext context, object value, Attribute[] attributes)
        {
            var props = base.GetProperties(context, value, attributes);
            return new PropertyDescriptorCollection(
                (from PropertyDescriptor prop in props
                 where prop.Name != "Value"
                 select prop).ToArray(), true);
        }
    }
    public string Value { get; set; }
    public string Name { get; set; }
}
于 2010-01-12T21:06:49.177 回答