91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C#中怎么操作DataGridView獲取或設置當前單元格的內容

發布時間:2022-02-28 09:22:09 來源:億速云 閱讀:400 作者:iii 欄目:開發技術

本篇內容主要講解“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

/// <summary>
        /// 向上遍歷
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        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];
            }
        }

        /// <summary>
        /// 向下遍歷
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        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獲取或設置當前單元格的內容”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

苍南县| 寻乌县| 会东县| 偏关县| 神木县| 泌阳县| 囊谦县| 潍坊市| 綦江县| 乌恰县| 灵石县| 吉安市| 巴南区| 青河县| 安新县| 东宁县| 濮阳市| 望城县| 嘉鱼县| 昭平县| 广南县| 大新县| 利川市| 萍乡市| 吉林省| 长治市| 富宁县| 泰安市| 抚宁县| 贡嘎县| 乐平市| 扶风县| 东阳市| 会宁县| 西城区| 蓬莱市| 灵武市| 宁安市| 封开县| 日喀则市| 馆陶县|