当前位置:   article > 正文

C#winform表格控件DataGridView添加数据及获取选中行的值实例_c# datagridview添加数据

c# datagridview添加数据

本文实例讲解C#winform表格控件DataGridView添加数据及获取选中行的值

创建winform添加DataGridView,添加列

 

 修改CS文件代码

  1. using System.Diagnostics;
  2. using System.Windows.Forms;
  3. namespace datagridviewDemo
  4. {
  5. public partial class Form1 : Form
  6. {
  7. public Form1()
  8. {
  9. InitializeComponent();
  10. //方法一 添加数据
  11. int index = this.dataGridView1.Rows.Add();
  12. this.dataGridView1.Rows[index].Cells[0].Value = "中国";
  13. this.dataGridView1.Rows[index].Cells[1].Value = "台湾";
  14. //方法一 添加数据或控件
  15. DataGridViewRow row = new DataGridViewRow();//创建DataGridView的行对象
  16. DataGridViewTextBoxCell textboxcell = new DataGridViewTextBoxCell();
  17. te
本文内容由网友自发贡献,转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号