我目前正在尝试以编程方式将数据添加到 DataGridView,但它似乎不起作用。我拥有的是一个数组,我从一个文本文件中填充它:
public static string PathList = @"C:\Users\gbbb\Desktop\Pfade.txt";
_PathRows = System.IO.File.ReadAllLines(@PathList);
我有一个带有 4 列的 DataGridView,我在其中添加了与路径一样多的行,所以:
public void InitPathsTable()
{
TabelleBib.Rows.Add(_PathRows.Length);
//And here is where i want to add the Paths on Column Nr.4
}
接下来我需要一种将我得到的所有路径(24)添加到 Column Nr.4 中的方法,每行一个路径。但对于像我这样的初学者来说,这似乎几乎是不可能的,所以我问你。