我有一个手动添加列的 DataGridView,例如:
DataGridViewLinkColumn col = new DataGridViewLinkColumn() { HeaderText = "", DataPropertyName = "PropValue", ReadOnly = true };
this.dataGridResults.Columns.Add(col);
数据源是一个存储过程,它返回一个包含“PropValue”和“PropText”等的列表。
我的问题是这个 DataGridViewLinkColumn 必须显示来自“PropText”的文本,并将其值绑定到“PropValue”。但是,DataPropertyName 似乎不是那么灵活,它只绑定到从 datsource 返回的一种数据类型。
如果问题解释不清楚,请告诉我。
想法?
先感谢您