如上图所示,是一个dataGridView中添加了comboBox,现在要给comboBox下拉框填入内容,这里面的内容来自一个txt文档,
txt文档内容如下。一行数据代表comboBox中的一个值。
怎么把txt的文档内容读取,并赋给dataGridView中的comboBox
如上图所示,是一个dataGridView中添加了comboBox,现在要给comboBox下拉框填入内容,这里面的内容来自一个txt文档,
txt文档内容如下。一行数据代表comboBox中的一个值。
怎么把txt的文档内容读取,并赋给dataGridView中的comboBox
using System.IO;
foreach(string s in File.ReadAllLines("x:\\path\\short-name.txt"))
{
comboBox1.Items.Add(s);
}