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.
我知道用数据初始化数据网格的方式。但我希望能够在运行时使用添加按钮和表单添加条目。
您必须创建 DataGrid 应包含的对象列表。如果要添加新条目,也可以将对象附加到列表中。对象应与 DataGrid 的类型相同,您在创建或扩展 Datagrid 时定义它(在 < > 之间)。然后调用.setRowData(list),数据网格将被填满。如果要添加新列表,请清除之前的数据网格并调用.setRowCount(0).
.setRowData(list)
.setRowCount(0)