0(最基本的技巧). 获取某列中的某行(某单元格)中的内容
  this.currentposition = this.dataGridView1.BindingContext  [this.dataGridView1.DataSource,   this.dataGridView1.DataMember].Position;
                bookContent = this.database.dataSet.Tables[0].Rows  [this.currentposition][21].ToString().Trim();
                MessageBox.Show(bookContent);

1、自定义列

//定义列宽
            this.dataGridView1.Columns[0].Width = 80;
            this.dataGridView1.Columns[1].Width = 80;
            this.dataGridView1.Columns[2].Width = 180;
            this.dataGridView1.Columns[3].Width = 120;
            this.dataGridView1.Columns[4].Width = 120;

Customize Cells and Columns in the Windows Forms DataGridView Control by Extending Their
    Behavior and Appearance
    Host Controls in Windows Forms DataGridView Cells
    继承 DataGridViewTextBoxCell 类生成新的Cell类,然后再继承 DataGridViewColumn 生成新的Column类,并指定
    CellTemplate为新的Cell类。新生成的Column便可以增加到DataGridView中去。
2、自动适应列宽
    Programmatically Resize Cells to Fit Content in the Windows Forms DataGridView Control
    Samples:
    DataGridView.AutoSizeColumns(
           DataGridViewAutoSizeColumnCriteria.HeaderAndDisplayedRows);
    DataGridView.AutoSizeColumn(
                DataGridViewAutoSizeColumnCriteria.HeaderOnly,
                2, false);
    DataGridView.AutoSizeRow(
                DataGridViewAutoSizeRowCriteria.Columns,
                2, false);
    DataGridView.AutoSizeRows(
              DataGridViewAutoSizeRowCriteria.HeaderAndColumns,
                0, dataGridView1.Rows.Count, false);
3、可以绑定并显示对象
    Bind Objects to Windows Forms DataGridView Controls
4、可以改变表格线条风格
    Change the Border and Gridline Styles in the Windows Forms DataGridView Control
    Samples:
    this.dataGridView1.GridColor = Color.BlueViolet;
    this.dataGridView1.BorderStyle = BorderStyle.Fixed3D;
    this.dataGridView1.CellBorderStyle = DataGridViewCellBorderStyle.None;
    this.dataGridView1.RowHeadersBorderStyle = DataGridViewHeaderBorderStyle.Single;
    this.dataGridView1.ColumnHeadersBorderStyle = DataGridViewHeaderBorderStyle.Single;
5、动态改变列是否显示,和动态改变列的显示顺序
    Change the Order of the Columns in the Windows Forms DataGridView Control
    Samples:
    customersDataGridView.Columns["CustomerID"].Visible = false;
    customersDataGridView.Columns["ContactName"].DisplayIndex = 0;
    customersDataGridView.Columns["ContactTitle"].DisplayIndex = 1;
    customersDataGridView.Columns["City"].DisplayIndex = 2;
    customersDataGridView.Columns["Country"].DisplayIndex = 3;
    customersDataGridView.Columns["CompanyName"].DisplayIndex = 4;
6、可以在列中显示图像
    Display Images in Cells of the Windows Forms DataGridView Control
    Samples:
            Icon treeIcon = new Icon(this.GetType(), "tree.ico");
           DataGridViewImageColumn iconColumn = new DataGridViewImageColumn ();
           iconColumn.Image = treeIcon.ToBitmap();
           iconColumn.Name = "Tree";
           iconColumn.HeaderText = "Nice tree";
           dataGridView1.Columns.Insert(2, iconColumn);
7、格式化显示内容:
    Format Data in the Windows Forms DataGridView Control
    Samples:
    this.dataGridView1.Columns["UnitPrice"].DefaultCellStyle.Format = "c";
    this.dataGridView1.Columns["ShipDate"].DefaultCellStyle.Format = "d";
    this.dataGridView1.DefaultCellStyle.NullValue = "no entry";
    this.dataGridView1.DefaultCellStyle.WrapMode = DataGridViewWrapMode.Wrap;
    this.dataGridView1.Columns["CustomerName"].DefaultCellStyle.Alignment =
                         DataGridViewContentAlignment.MiddleRight;
   
8、在拖动列的滚动条时可以将指定的列冻结
    Freeze Columns in the Windows Forms DataGridView Control
    Samples:将指定列及以前的列固定不动
    this.dataGridView1.Columns["AddToCartButton"].Frozen = true;
9、获取选择的单元格,行,列
    Get the Selected Cells, Rows, and Columns in the Windows Forms DataGridView Control
    Samples:
       见msdn。
10、显示录入时出现的错误信息
    Handle Errors that Occur During Data Entry in the Windows Forms DataGridView Control
    Samples:
    private void dataGridView1_DataError(object sender,
        DataGridViewDataErrorEventArgs e)
        {
        // If the data source raises an exception when a cell value is
        // commited, display an error message.
        if (e.Exception != null &&
            e.Context == DataGridViewDataErrorContext.Commit)
        {
            MessageBox.Show("CustomerID value must be unique.");
        }
        }
11、大数据量显示采用Virtual Mode
    Implement Virtual Mode in the Windows Forms DataGridView Control
12、设置指定的列只读
    Make Columns in the Windows Forms DataGridView Control Read-Only
    Samples:
    dataGridView1.Columns["CompanyName"].ReadOnly = true;
 
13、移去自动生成的列
    Remove Autogenerated Columns from a Windows Forms DataGridView Control
    Sample:
    dataGridView1.AutoGenerateColumns = true;
    dataGridView1.DataSource = customerDataSet;
    dataGridView1.Columns.Remove ("Fax");
    或:
    dataGridView1.Columns["CustomerID"].Visible = false;
14、自定义选择模式
    Set the Selection Mode of the Windows Forms DataGridView Control
    Sample:
    this.dataGridView1.SelectionMode = DataGridViewSelectionMode.FullRowSelect;
    this.dataGridView1.MultiSelect = false;
15、自定义设定光标进入单元格是否编辑模式(编辑模式)
    Specify the Edit Mode for the Windows Forms DataGridView Control
    this.dataGridView1.EditMode = DataGridViewEditMode.EditOnEnter;
16、新行指定默认值
    Specify Default Values for New Rows in the Windows Forms DataGridView Control
    Sample:
    private void dataGridView1_DefaultValuesNeeded(object sender,                       System.Windows.Forms.DataGridViewRowEventArgs e)
    {
      e.Row.Cells["Region"].Value = "WA";
       e.Row.Cells["City"].Value = "Redmond";
       e.Row.Cells["PostalCode"].Value = "98052-6399";
      e.Row.Cells["Region"].Value = "NA";
      e.Row.Cells["Country"].Value = "USA";
    e.Row.Cells["CustomerID"].Value = NewCustomerId();
    }
17、数据验证
    Validate Data in the Windows Forms DataGridView Control
    Samples:
     private void dataGridView1_CellValidating(object sender,
            DataGridViewCellValidatingEventArgs e)
        {
        // Validate the CompanyName entry by disallowing empty strings.
        if (dataGridView1.Columns[e.ColumnIndex].Name == "CompanyName")
        {
            if (e.FormattedValue.ToString() == String.Empty)
            {
                dataGridView1.Rows[e.RowIndex].ErrorText =
                    "Company Name must not be empty";
                e.Cancel = true;
            }
        }
        }
18、数据提交到dataset中
                DataSet ds = new DataSet("MyDataSet");
                ds.Tables[biaom.Trim()].Rows.Clear();
                try
                {
                    for (int i = 0; i < dataGridView1.Rows.Count - 1; i++)
                    {
                        DataTable dt = ds.Tables[biaom.Trim()];
                        DataRow myrow = ds.Tables[biaom.Trim()].NewRow();
                        for (int j = 0; j < dataGridView1.Columns.Count; j++)
                        {
                            myrow[j] = Convert.ToString(dataGridView1.Rows[i].Cells[j].Value);
                        }
                        ds.Tables[biaom.Trim()].Rows.Add(myrow);
                    }
                }
                catch (Exception)
                {
                    
                    MessageBox.Show("输入类型错误!");
                    return;
                }

C#DataGridView中的常用技巧的更多相关文章

  1. sublime text 3中emmet常用技巧

    <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8&quo ...

  2. find查找文件命令 - Linux系统中的常用技巧整理

    “find”在Linux系统中是比较常用的文件查找命令,使用方法有很多,可以拥有查找文件.文件目录.文件更新时间.文件大小.文件权限及对比文件时间.下面是整理的“find”常用方法,方便以后需要的时候 ...

  3. Vue开发中的常用技巧(持续更新)

    1. 监听子组件的生命周期例如有父组件Parent和子组件Child,如果父组件监听到子组件挂载mounted就做一些逻辑处理,常规写法可能如下: // Parent.vue <Child @m ...

  4. css中一些常用技巧

    // css中引入字体文件 @font-face { font-family: msyh; /*这里是说明调用来的字体名字*/ src: url('../font/wryh.ttf'); /*这里是字 ...

  5. Android ListView 常用技巧总结

    本文对 ListView 中的一些常用技巧做一个总结.附:虽然现在 RecyclerView 已逐渐取代 ListView,但实际情况是大部分项目中还在使用 ListView.当然,后续我会在我的博客 ...

  6. JavaScript常用技巧总结(持续添加中...)

    在我学习过程中收集的一些常用技巧: typeof x !== undifined 判断x是否已定义: x === Object(x)  判断x是否为对象: Object.keys(x).length ...

  7. DataGridView 中添加CheckBox和常用处理方式 .

    DataGridView 中添加CheckBox和常用处理方式 文章1 转载:http://blog.csdn.net/pinkey1987/article/details/5267934 DataG ...

  8. Javascript中最常用的55个经典技巧

    Javascript中最常用的55个经典技巧1. oncontextmenu="window.event.returnValue=false" 将彻底屏蔽鼠标右键<table ...

  9. Idea 常用功能汇总,工作中常用技巧

    1.隐藏没用到的文件 比如 IDEA 的项目配置文件(.iml 和.idea),打开 Settings-File Types, 加入要隐藏的文件后缀.  2.常用技巧 2.1 通过Alt+F8查看变量 ...

随机推荐

  1. php7+apache2.4 (Windows7下),成功启动。(楼主另外提供了1个php7集成环境打包: http://pan.baidu.com/s/1qXwjpF2 ,如果你只是想了解一下,放在d盘根目录。)

    php7正式版已经发布,性能是php5.4的2倍.博主入手php7 新鲜了一把,下面是解决问题之后成功启动php7的记录. ( 电脑必须win7 sp1, .netframework4 ) Windo ...

  2. 避免每次输入bundler Exec命令

    bundle在ruby的世界里是个好东西,它可以用来管理应用程序的依赖库.它能自动的下载和安装指定的gem,也可以随时更新指定的gem. rvm则是一个命令行工具,能帮助你轻松的安装,管理多个ruby ...

  3. select 通过jq赋值

    <select name="F_YSBAQLX" onchange="selectvalue()" id="lista" prompt ...

  4. Spring Autowired错误???

    @SpringBootApplicationpublic class TestMqApplication extends SpringBootServletInitializer { @Suppres ...

  5. Linux(Debian)+Apache+Django 配置

    配置Apache和Django连接的过程可谓是一波三折,在此记录.   零.基本的安装 软件环境 l  Linux-3.2.0-4-amd64-x86_64-with-debian-7.7 l  py ...

  6. Java的委托

    http://www.cnblogs.com/soojoe/archive/2012/04/12/2532304.html 委托模式是软件设计模式中的一项基本技巧.在委托模式中,有两个对象参与处理同一 ...

  7. 字符数组,字符指针,字符串常量,以及sizeof的一些总结

    1.以字符串形式出现的,编译器都会为该字符串自动添加一个\0作为结尾 如在代码中写"abc",编译器帮你存储的是"abc\0". 2.数组的类型是由该数组所存放 ...

  8. Eclipse *版本

    关于Eclipse的版本介绍, Eclipse Standard 该版本是eclipse最基础的版本,适合Java se个人开发者.或希望根据自己需求配置插件的开发者使用. Eclipse IDE f ...

  9. Eclipse 配置Maven

    Eclipse 配置Maven 下载Maven 首先在官网下载Maven:http://maven.apache.org/download.cgi 下载后将其解压到相应的位置 配置Maven环境变量 ...

  10. 【uTenux实验】事件标志

    事件标志是一个用来实现同步的对象,由多个位组成,用作指示对应事件存在的标志.事件标志由用来指示对应事件存在的位模式(bitpattern)和一个等待事件标志的任务队列组成. uTenux提供了一组AP ...