码迷,mamicode.com
首页 > Windows程序 > 详细

DataGridView数据绑定后单元格格式化

时间:2015-08-06 22:43:52      阅读:239      评论:0      收藏:0      [点我收藏+]

标签:

微软官网

DataGridView数据绑定后,经常需要对数据进行某种格式转换,比如说 1表示男性,2表示女性。

这时,需要用到CellFormatting事件

下面是微软官方的示例

private void dataGridView1_CellFormatting(object sender, DataGridViewCellFormattingEventArgs e)
{    // If the column is the Artist column, check the
    // value.
    if (this.dataGridView1.Columns[e.ColumnIndex].Name == "Artist")
    {        if (e.Value != null)
        {            // Check for the string "pink" in the cell.
            string stringValue = (string)e.Value;
            stringValue = stringValue.ToLower();            if ((stringValue.IndexOf("pink") > -1))
            {
                e.CellStyle.BackColor = Color.Pink;
            }

        }
    }    else if (this.dataGridView1.Columns[e.ColumnIndex].Name == "Release Date")
    {
        ShortFormDateFormat(e);
    }
}


DataGridView数据绑定后单元格格式化

标签:

原文地址:http://my.oschina.net/shanlilaideyu/blog/488850

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!