DataGridView c#不显示长字符串值

时间:2017-01-04 12:49:27

标签: c# datagridview windows-forms-designer

我使用c#以窗口形式创建了许多动态DataGridView,并为它们提供了一些值。我的一个值是一个大约30000字符串的字符串(字符串长度= 28447)​​我的问题是字符串不显示在单元格中。我测试了短长度的字符串,这是有效的,但长度不长。

DataGridViewRow row = (DataGridViewRow)Dgv.Rows[0].Clone();
row.Cells[0].Value = " Sequences" + (i + 1);
((DataGridViewTextBoxCell)row.Cells[1]).MaxInputLength = SequencesLenght * 3;  //Sequences length for my test is: 10000
row.Cells[1].Value = SequencesString[i];
Dgv.Rows.Add(row);

谢谢

0 个答案:

没有答案