C#:从DataGridView中选择行

前端之家收集整理的这篇文章主要介绍了C#:从DataGridView中选择行前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个带有DataGridView(3列)和Button的表单.每次用户点击按钮时,我都希望获取存储在该行第1列中的值.

这是我的代码

private void myButton_Click(object sender,EventArgs e)
    {
        foreach (DataGridViewRow row in ProductsGrid.Rows)
        {
            if (this.ProductsGrid.SelectedRows.Count == 1)
            {
             // get information of 1st column from the row
             string value = this.ProductsGrid.SelectedRows[0].Cells[0].ToString();
            }
        }
    }

但是,当我单击myButton时,this.ProductsGrid.SelectedRows.Count为0.另外,如何确保用户只选择一行而不选择多行?
这段代码看起来不错吗?

解决方法

设置 DataGridView.MultiSelect = false,DataGridView.SelectionMode = FullRowSelect.这样就可以使用户一次只能选择一行.
原文链接:https://www.f2er.com/csharp/98137.html

猜你在找的C#相关文章