摘要:
通过列名获取选中行的ID private string GetSelectID(string FileName) { int[] pRows = this.gdv.GetSelectedRows();//传递实体类过去 获取选中的行 if (pRows.GetLength(0) > 0) retur 阅读全文
摘要:
实体类 public class TreeListTest { public int ID { get; set; } public int PARENTID { get; set; } public string NAME { get; set; } } 实例化数据 List<TreeListTe 阅读全文