Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个类和一个用户控件。用户控件应该代表该类并包含其所有属性。我对如何处理这个问题有点迷茫
非常感谢所有帮助
似乎您需要使用数据绑定。创建一个用您的类键入的属性,例如MyClass Data {get; set;},然后添加新的 BindingSource 并作为 BindingSource.DataSource 设置您的 Data 属性。然后设计你的控件。不要忘记在构造函数中创建 MyClass 的新实例。
MyClass Data {get; set;}