我使用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);
谢谢