这是我表格的形象。
这应该这样做。
1.用户将选择要重命名的项目。 (例如,用户选择“string1”)
2.在下拉列表中选择新项目名称(例如,用户选择“新字符串1”)
注意:下拉列表中的所选项目将是新名称“string1”
3.单击按钮。(单击按钮时。这将自动创建已经进行的更改)。
这是问题:
如何从下拉列表中的所选项目更改datagridview上的项目名称?
这是我的一些代码。
public void loadgrid()
{
DataGridViewCheckBoxColumn checkboxColumn = new DataGridViewCheckBoxColumn();
checkboxColumn.Width = 25;
dataGridView1.Columns.Add(checkboxColumn);
DataGridViewTextBoxColumn textboxcolumn = new DataGridViewTextBoxColumn();
textboxcolumn.Width = 150;
dataGridView1.Columns.Add(textboxcolumn);
dataGridView1.Rows.Add(new object[] { false, "string1" });
dataGridView1.Rows.Add(new object[] { false, "string2" });
}
for button1
private void button1_Click(object sender, EventArgs e)
{
int x = 0;
foreach (DataGridViewRow row in dataGridView1.Rows)
{
DataGridViewCheckBoxCell chk = (DataGridViewCheckBoxCell)row.Cells[0];
chk.TrueValue = true;
if(chk.Value == chk.TrueValue) // there no chk.Check on datagridview just chk.Selected
{
//code here
//this will test if the checkbox has been checked.
//the selected item on the dropdown will be the
//new name of the item on the datagridview
}
}
x = x + 1;
}
答案 0 :(得分:0)
我认为如果您想使用选中的checkBox更改行中的所有字符串,这将有所帮助:
foreach (DataGridViewRow row in dataGridView1.Rows)
{
if (!row.IsNewRow)
{
DataGridViewCheckBoxCell chk1 = (DataGridViewCheckBoxCell)row.Cells[0];
if (chk1 != null && chk1.Value!=null && (bool)chk1.Value) // there no chk.Check on datagridview just chk.Selected
{
string newString = string.Empty;
if (comboBox1.SelectedItem != null)
{
newString = comboBox1.SelectedItem.ToString();
row.Cells[dataGridView1.Columns.Count - 1].Value = newString;
}
}
}
}
如果您只想在选中CheckBox的选定行中更改字符串,则可以使用此代码:
if(dataGridView1.SelectedRows.Count>0)
{
DataGridViewRow row = dataGridView1.SelectedRows[0];
if (!row.IsNewRow)
{
DataGridViewCheckBoxCell chk1 = (DataGridViewCheckBoxCell)row.Cells[0];
if (chk1 != null && chk1.Value!=null && (bool)chk1.Value) // there no chk.Check on datagridview just chk.Selected
{
string newString = string.Empty;
if (comboBox1.SelectedItem != null)
{
newString = comboBox1.SelectedItem.ToString();
row.Cells[dataGridView1.Columns.Count - 1].Value = newString;
}
}
}
}
如果你想设置所有选定的行(如果你的DataGridView
控件可以这样做,那么只需迭代SelectedRows
属性