C#中DataGridView常用操作实例小结
更新时间:2015年09月01日 12:50:23 作者:我心依旧
这篇文章主要介绍了C#中DataGridView常用操作,以实例形式总结了DataGridView绑定下拉列表、设置默认值、判断复选框是否选中等技巧,具有一定参考借鉴价值,需要的朋友可以参考下
本文实例讲述了C#中DataGridView常用操作。分享给大家供大家参考。具体如下:
public void Binder1() { DataTable tableType = DataBase.SQLDBHelper.GetDataTable("select top 200 unit_code,unit_name from unit "); DataTable table = DataBase.SQLDBHelper.GetDataTable("select top 2 * from TempProduct"); DataGridViewRow dgvr; foreach (DataRow row in table.Rows) { dgvr = new DataGridViewRow(); dgvr.CreateCells(dataGridView); dgvr.Cells[0].Value = row["Id"].ToString(); dgvr.Cells[1].Value = row["Name"].ToString(); dgvr.Cells[2].Value = row["Age"].ToString(); dgvr.Cells[3].Value = row["Address"].ToString(); //绑定下拉列表 DataGridViewComboBoxColumn dgvcbc = dataGridView.Columns[4] as DataGridViewComboBoxColumn; if (dgvcbc != null) { //绑定下来列表 dgvcbc.DataSource = tableType; dgvcbc.DisplayMember = "unit_name"; dgvcbc.ValueMember = "unit_code"; } //为下拉列表设置默认值 dgvr.Cells[4].Value = row["EntryId"].ToString(); //设置复选框是否选中 dgvr.Cells[5].Value = row["flag"].ToString() == "0" ? true : false; //在列表中找到DataGridViewLinkColumn DataGridViewLinkColumn links = dataGridView.Columns[6] as DataGridViewLinkColumn; if (links != null) { //需要设置DataGridViewLinkColumn的UseColumnTextForLinkValue属性为true才会有作用 links.Text = "点击查看"; } //在列表中找到DataGridViewButtonColumn DataGridViewButtonColumn button = dataGridView.Columns[7] as DataGridViewButtonColumn; if (button != null) { //需要设置DataGridViewButtonColumn的UseColumnTextForLinkValue属性为true才会有作用 button.Text = "点击查看"; } dataGridView.Rows.Add(dgvr); } }
希望本文所述对大家的C#程序设计有所帮助。
您可能感兴趣的文章:
- GridView自动增加序号(三种实现方式)
- C#处理datagridview虚拟模式的方法
- C#中datagridview的EditingControlShowing事件用法实例
- C#中GridView动态添加列的实现方法
- C#实现DataGridView控件行列互换的方法
- C#实现绑定DataGridView与TextBox之间关联的方法
- C#实现3步手动建DataGridView的方法
- asp.net中GridView数据鼠标移入显示提示信息
- C#中DataGridView动态添加行及添加列的方法
- GridView使用学习总结
- 如何用jQuery实现ASP.NET GridView折叠伸展效果
- ASP.NET GridView中加入RadioButton不能单选的解决方案
- DataGridView展开与收缩功能实现
- GridView控件如何显示序号
相关文章
c#中directory 和directoryinfo的使用小结
当使用C#处理目录时,可以使用 System.IO 命名空间中的 Directory 和 DirectoryInfo 类来执行各种目录操作,本文主要介绍了c#中directory 和directoryinfo的使用小结,感兴趣的可以了解一下2024-02-02
最新评论