千家信息网

C#中怎么操作DataGridView获取或设置当前单元格的内容

发表于:2025-01-18 作者:千家信息网编辑
千家信息网最后更新 2025年01月18日,本篇内容主要讲解"C#中怎么操作DataGridView获取或设置当前单元格的内容",感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习"C#中怎么操作DataGr
千家信息网最后更新 2025年01月18日C#中怎么操作DataGridView获取或设置当前单元格的内容

本篇内容主要讲解"C#中怎么操作DataGridView获取或设置当前单元格的内容",感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习"C#中怎么操作DataGridView获取或设置当前单元格的内容"吧!

当前单元格指的是DataGridView焦点所在的单元格,它可以通过DataGridView对象的CurrentCell属性取得。如果当前单元格不存在的时候,返回null。

取得当前单元格的内容:

object obj = this.dgv_PropDemo.CurrentCell.Value;

注:返回值是object类型的。

取得当前单元格的列Index:

int columnIndex = this.dgv_PropDemo.CurrentCell.ColumnIndex;

取得当前单元格所在的行的Index:

int rowIndex= this.dgv_PropDemo.CurrentCell.RowIndex;

另外,使用DataGridView.CurrentCellAddress属性来确定单元格所在的行:

int row= this.dgv_PropDemo.CurrentCellAddress.Y;

列:

int column = this.dgv_PropDemo.CurrentCellAddress.X;

注:DataGridView的行和列的索引都是从0开始的。

当前的单元格可以通过设定DataGridView对象的CurrentCell来改变。

DataGridView1.CurrentCell=DataGridView1[int columnIndex,int rowIndex];

注:如果DataGridVIew的选中模式是行选择,那么会选中当前单元格所在的整行。否则只会选中设置的当前单元格。

将CurrentCell设置为Null可以取消激活的当前单元格。

示例:设置第一行第二列为当前的CurrentCell

this.dgv_PropDemo.CurrentCell = this.dgv_PropDemo[1, 0];

示例:通过向上和向下实现遍历DataGridView

///         /// 向上遍历        ///         ///         ///         private void btn_Up_Click(object sender, EventArgs e)        {            //获取上一行的索引            int upRowIndex = this.dgv_PropDemo.CurrentCell.RowIndex - 1;            if (upRowIndex < 0)            {                //选中最后一行                this.dgv_PropDemo.CurrentCell = this.dgv_PropDemo[0, this.dgv_PropDemo.RowCount - 1];            }            else            {                this.dgv_PropDemo.CurrentCell = this.dgv_PropDemo[0, upRowIndex];            }        }        ///         /// 向下遍历        ///         ///         ///         private void btn_Down_Click(object sender, EventArgs e)        {             //获取下一行的索引            int nextRowIndex = this.dgv_PropDemo.CurrentCell.RowIndex + 1;            if (nextRowIndex > this.dgv_PropDemo.RowCount - 1)            {                this.dgv_PropDemo.CurrentCell = this.dgv_PropDemo[0, 0];            }            else            {                this.dgv_PropDemo.CurrentCell = this.dgv_PropDemo[0, nextRowIndex];            }        }

到此,相信大家对"C#中怎么操作DataGridView获取或设置当前单元格的内容"有了更深的了解,不妨来实际操作一番吧!这里是网站,更多相关内容可以进入相关频道进行查询,关注我们,继续学习!

0