博客
关于我
datagridview 常用操作代码
阅读量:124 次
发布时间:2019-02-27

本文共 1263 字,大约阅读时间需要 4 分钟。

???????

DataGridView???C#?????????????????????????????????????????????DataGridView?????????????????????DataGridView?????????????

?????????

???DataGridView??????????????????????

  • ??????????

    ??????????DataGridView???????????

    string headText = this.dataGridView1.Columns[this.dataGridView1.CurrentCell.ColumnIndex].HeaderText;

    ???dataGridView1 ?DataGridView??????CurrentCell ?????????????

  • ??????????

    ???????????????????????????

    string name = this.dataGridView1.Columns[this.dataGridView1.CurrentCell.ColumnIndex].Name;
  • ???????

    ???????????DataGridView?????????????

    private void getCurrentCellButton_Click(object sender, System.EventArgs e){    string msg = String.Format("Row: {0}, Column: {1}",        dataGridView1.CurrentCell.RowIndex,        dataGridView1.CurrentCell.ColumnIndex);    MessageBox.Show(msg, "Current Cell");}

    ???????

    ?????????DataGridView??????????????????

    private void setCurrentCellButton_Click(object sender, System.EventArgs e){    // ?????????0??1?    this.dataGridView2.CurrentCell = this.dataGridView1[1, 0];}

    ??DataGridView?CurrentCell??

    DataGridView???CurrentCell ????????????????????????????

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

    ???dataGridView1 ?DataGridView??????1 ??????0 ???????????????????????????

    ??????????????

    转载地址:http://eerf.baihongyu.com/

    你可能感兴趣的文章
    nvidia-smi 参数详解
    查看>>
    Nvidia驱动失效,采用官方的方法重装更快
    查看>>
    nvmw安装node-v4.0.0之后版本的临时解决办法
    查看>>
    nvm切换node版本
    查看>>
    nvm安装 出现 Error retrieving “http://xxxx/SHASUMS256.txt“: HTTP Status 404 解决方法
    查看>>
    nvm安装以后,node -v npm 等命令提示不是内部或外部命令 node多版本控制管理 node多版本随意切换
    查看>>
    NXLog采集windows日志配置conf文件
    查看>>
    ny540 奇怪的排序 简单题
    查看>>
    NYOJ -216 A problem is easy
    查看>>
    NYOJ 1066 CO-PRIME(数论)
    查看>>
    NYOJ 737:石子合并(一)(区间dp)
    查看>>
    nyoj 91 阶乘之和(贪心)
    查看>>
    nyoj------203三国志
    查看>>
    NYOJ-525 一道水题
    查看>>
    NYOJ127星际之门(一)
    查看>>
    nyoj58 最少步数
    查看>>
    N皇后问题
    查看>>
    N皇后问题
    查看>>
    n种方式教你用python读写excel等数据文件
    查看>>
    OAuth 2.0 MAC Tokens
    查看>>