导读 大家好,我是小根根,我来为大家解答以上问题。datagridview绑定list,datagridview绑定的是类的名字 如何处理很多人还不知道,现在让我...
大家好,我是小根根,我来为大家解答以上问题。datagridview绑定list,datagridview绑定的是类的名字 如何处理很多人还不知道,现在让我们一起来看看吧!
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; } } }。
本文到此讲解完毕了,希望对大家有帮助。