我正在尝试为各种格式和字段的文件自动执行数据处理任务。我创建了一个程序来确定分隔文件的分隔符,并将文件的一部分加载到表单上的 DataGridView 中,以便用户可以在文件被批量加载到 SQL 表之前确认文件的某些字段. 该表将使用用户在数据网格的组合框中选择的一些字段名称即时创建。
这是我的目标,但我不确定我是否正确地解决了这个问题。
此时,我已经为组合框创建了一个 BindingSource ...
BindingSource bindingSource = new BindingSource();
这里我展示了选中文件的DataGridView,为数据文件中的每个字段添加一列
private void ShowDataGridView(string file, string delimiter, string[] fieldNames, string[] fieldLengths)
{
StreamReader fileReader = new StreamReader(file);
if (bindingSource.Count == 0)
{
bindingSource.Add("FIRSTNAME");
bindingSource.Add("LASTNAME");
bindingSource.Add("ADDRESS1");
bindingSource.Add("ADDRESS2");
bindingSource.Add("CITY");
bindingSource.Add("STATE");
bindingSource.Add("ZIP");
bindingSource.Add("COMPANY");
bindingSource.Add("EMAIL");
bindingSource.Add("");
}
dataGridView1.Rows.Clear();
dataGridView1.Columns.Clear();
int count = 0;
for (int i = 0; i < 17; i++) //read 17 lines into datagridview for field confirmation, 17 lines just so happens to fill my datagridview nicely, last row will be combobox for field name selection
{
string[] fields = StringFunctions.Split(fileReader.ReadLine(), delimiter, Convert.ToString("\""));
count = fields.Count();
if (i == 0)
{
// Adding Column Header to DataGridView
for (int x = 0; x < count; x++)
{
DataGridViewTextBoxColumn columnDataGridTextBox = new DataGridViewTextBoxColumn();
columnDataGridTextBox.Name = fieldNames[x];
columnDataGridTextBox.HeaderText = fieldNames[x];
dataGridView1.Columns.Add(columnDataGridTextBox);
}
}
dataGridView1.Rows.Add(fields);
}
for (int x = 0; x < count; x++)
{
DataGridViewComboBoxCell combobox = new DataGridViewComboBoxCell();
combobox.DataSource = bindingSource;
dataGridView1[x, 16] = combobox; //remember 17 rows added, combobox will be last row in datagridview
combobox = null;
}
dataGridView1.AutoSizeColumnsMode = DataGridViewAutoSizeColumnsMode.AllCells;
fileReader.Close();
fileReader = null;
}
好的,现在我可以查看数据,以及所有数据字段的组合框。某些字段是必需的(BindingSource 字段名称)我希望用户能够从组合框中为数据列选择适当的字段名称。当用户从组合框中选择了一个字段时,我想从 BindingSource 中删除该字段名称,因此用户不能为另一列选择相同的字段名称。其余字段将具有默认字段名称,例如(FirstName、Field2、LastName、Address1、Field5、Field6、Address2 等)
组合框是我遇到问题的地方:)
我已经搜索了代码片段,并且正在取得一些进展,但是我可以使用对 datagridview 事件以及如何处理它们有更好理解的人的一些建议。我真的不知道我在做什么,只是把东西扔在墙上,看看它是否会粘住。以下是我到目前为止尝试过的...
InitializeComponent();
dataGridView1.EditingControlShowing += new DataGridViewEditingControlShowingEventHandler(DataGridViewEditingControlShowing);
private void DataGridViewEditingControlShowing(object sender, DataGridViewEditingControlShowingEventArgs e)
{
//here we will add the combo box's selected event changed
ComboBox cmbBox;
if (dataGridView1.CurrentCell is DataGridViewComboBoxCell)
{
cmbBox = e.Control as ComboBox;
if (cmbBox == null)
return;
cmbBox.SelectedIndexChanged += cmbBox_SelectedIndexChanged;
}
}
//This will display value of Select values of Combo Box
//which is DataGridView
void cmbBox_SelectedIndexChanged(object sender, EventArgs e)
{
ComboBox cmbBox = (ComboBox)sender;
if (cmbBox.SelectedValue != null)
{
MessageBox.Show(cmbBox.SelectedValue.ToString()); //testing
bindingSource.Remove(cmbBox.SelectedValue); //this removes it from the current combobox as well, no good. Also run time error when clicking into a different combobox
}
}
我希望我已经进行了足够的描述并发布了足够的代码,以便让任何可能的代码专家帮助者了解我正在尝试完成的工作。如果需要更多信息,请告诉我。非常感谢任何想法/解决方案。
谢谢!