组件一 c1List add Rows 或 addItems

component one c1List add Rows or addItems

我正在使用 C# 中的 C1List 等组件一工具(我也使用 Visual Studio)。我想向我的 C1List 添加一些行。我找到了这个文档:http://www.componentone.co.kr/files/Documentation/Winforms_List.pdf

首先看起来有点简单。这是我的代码:

C1.Win.C1List.C1DataColumn col = new C1.Win.C1List.C1DataColumn();
col.caption = "JustAColumn";
c1List1.Columns.Insert(0,col);

c1List1.AddItem("newRowValue");

文档就是这么说的。但我没有看到添加的行。该列表是空的,只有新列。

有人用过 c1List 了吗?

要使用 AddItem,您必须将 C1List 的 DataMode 设置为 AddItem;

c1List1.DataMode = DataModeEnum.AddItem;

For more refer this page