首页
搜索 搜索
当前位置:商业资讯 > 正文

datagridview绑定list(datagridview绑定的是类的名字 如何处理)

2023-08-31 03:57:43 科技网


(相关资料图)

1、DataGridView有个CellFormatting事件DataGridView_CellFormatting(object sender, DataGridViewCellFormattingEventArgs e){ if (e.ColumnIndex == "商品类别的列号") { if (e.Value != null) { SPLB splb = e.Value as SPLB; e.Value = splb.Name; e.FormattingApplied = true; } }}。

本文到此讲解完毕了,希望对大家有帮助。