gpt4 book ai didi

c# - 以编程方式选择一行 DataGridView

转载 作者:行者123 更新时间:2023-12-02 22:22:39 24 4
gpt4 key购买 nike

在我的表单应用程序中,有一个 (buttonNEW) 选择 DataGridViewNewIndexRow,我想用它更改 datagridview 的索引按钮。

private void buttonNew_Click(object sender, EventArgs e)
{
if (dataGridView.CurrentRow.Index!=dataGridView.NewRowIndex)
{
dataGridView.ClearSelection();
dataGridView.Rows[dataGridView.NewRowIndex].Selected = true;
label1.Text = dataGridView.CurrentRow.Index.ToString();

}
}

但是点击按钮后 DataGridView 的索引没有改变。有什么问题?

最佳答案

这应该有效:-

int numofRows = dataGridView.rows.count;

dataGridView.CurrentCell = dataGridView.Rows[numofRows - 1].Cells[0];

或者我认为你也可以这样做:-

dataGridView.CurrentCell = dataGridView.Rows[dataGridView.NewRowIndex].Cells[0];

关于c# - 以编程方式选择一行 DataGridView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13468388/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com