博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
datagridview 中添加了一个button类型的列,怎么写button的事件
阅读量:6669 次
发布时间:2019-06-25

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

1 using System; 2 using System.Collections.Generic; 3 using System.ComponentModel; 4 using System.Data; 5 using System.Drawing; 6 using System.Linq; 7 using System.Text; 8 using System.Windows.Forms; 9 using System.Data.Sql;10 using System.Data.SqlClient;11 12 namespace DGV_ButtonEvent_WIN13 {14     public partial class Form1 : Form15     {16         DataSet ds = new DataSet();17         DataTable dtInfo = new DataTable();18         string strConn = "Server=.;Trusted_Connection=SSPI;Database=DBTRUCK;Enlist=false;";   19 20         public Form1()21         {22             InitializeComponent();23         }24 25         private void Form1_Load(object sender, EventArgs e)26         {27             SqlConnection conn = new SqlConnection(strConn);28             conn.Open();29             string strSql = "SELECT * FROM CarFee";30             SqlDataAdapter sda = new SqlDataAdapter(strSql, conn);31             sda.Fill(ds, "ds");32             conn.Close();33             dataGridView1.DataSource=ds.Tables[0];34         }35 36         //dataGridView1事件37         private void dataGridView1_CellContentClick(object sender, DataGridViewCellEventArgs e)38         {39             if (e.RowIndex >= 0)40             {41                 DataGridViewColumn column = dataGridView1.Columns[e.ColumnIndex];42                 if (column is DataGridViewButtonColumn)43                 {44                     //这里可以编写你需要的任意关于按钮事件的操作~45                     MessageBox.Show("按钮被点击");46                 }47              //DGV下拉框的取值48                 MessageBox.Show(dataGridView1.Rows[e.RowIndex].Cells[e.ColumnIndex-1].Value.ToString());49             }50         }51     }52 }53  54

 

转载于:https://www.cnblogs.com/gx-143/p/5792915.html

你可能感兴趣的文章
【类】C#计算器类(SamWang)
查看>>
获取Repeter的Item和ItemIndex
查看>>
Kinect 开发小记:穿越艾泽拉斯,调戏红龙女王
查看>>
C#实现ACCESS数据库备份还原
查看>>
机房收费系统中的Grid++Report报表设计器的应用
查看>>
通过Wifi调试Android应用
查看>>
Leetcode: Construct Binary Tree from Inorder and Postorder Traversal
查看>>
ZeroMQ接口函数之 :zmq_getsockopt – 获取ZMQ socket的属性
查看>>
ThreadPoolExecutor使用介绍
查看>>
用C++/CLI搭建C++和C#之间的桥梁(四)—— 网络资源
查看>>
纳米技术的起源与发展
查看>>
launchpad, jira, github
查看>>
JavaWeb学习笔记——XML和SAX解析区别
查看>>
hdu1716排列2(stl:next_permutation+优先队列)
查看>>
Java 8 时间日期库的20个使用示例
查看>>
Android系统开发(4)——Autotools
查看>>
Nginx教程(一) Nginx入门教程
查看>>
【cocos2d-x 3.7 飞机大战】 决战南海I (十) 游戏主场景
查看>>
ORM进阶:Hibernate框架搭建及开发
查看>>
scala Wordcount
查看>>