0

我在 C# WinForms 项目中有一个名为 Product 的类,其定义如下:

class Product
    {
        string pName;
        string pType;
        string pSubType;
        string pBarcode;
        string pRegion;
        string pComments;
        bool pEnabled;

        // methods here ...
    }

现在我有一个表单,我在其中使用这个 Products 类的一个实例。现在我想避免手动绑定这个 Product 类实例和表单中的文本框之间的数据。除了手动来回分配值之外,还有什么更好的方法可以做到这一点?

4

1 回答 1

2

将私有字段更改为公共属性,实现INotifyPropertyChanged接口,并使用可以添加到控件的数据绑定,然后就可以了。

于 2012-11-05T18:49:46.360 回答