0

我在 C# 项目下使用 Windows 窗体创建了自己的控件。我使用设置来更改控件属性,例如:

[Category("Settings")]
public Color BorderColor { get; set; }

在我的表单中,我只是通过从列表中选择另一个来更改 BorderColor。

但是现在我想在 Form 中创建 NewList(字符串),然后将我的 ListString 属性绑定到我的 NewList。

在我的控制下,它看起来像:

[Category("Settings")]
public List<string> ListString { get; set; }

在我的表格中,它看起来像

public List<string> NewList = new List<string>() { "1", "2" };
4

0 回答 0