C# 为啥更新功能在普通button可以,在toolStripButton就不能实现功能呢?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C# 为啥更新功能在普通button可以,在toolStripButton就不能实现功能呢?相关的知识,希望对你有一定的参考价值。
本来我是用普通button实现一个对datagridview的数据进行修改的功能的,是可以的,但是为了好看,就是用toolstripbutton,在这个上面新增一个按钮,然后,在这个按钮的点击事件里使用同样的代码,但是,却不能把数据更新到数据库里去。代码:private void toolStripButton2_Click(object sender, EventArgs e)
con = new SqlConnection(" server=(local);Initial Catalog=hr;Integrated Security=True");
SqlDataAdapter da = new SqlDataAdapter("select 用户名,用户角色,角色说明 from info", con);
DataSet ds = new DataSet();
da.UpdateCommand = new SqlCommand("update info set 用户角色=@用户角色,角色说明=@角色说明 where 用户名='" + dataGridView2.CurrentRow.Cells[0].Value.ToString() + "'", con);
da.UpdateCommand.Parameters.Add("@用户角色", SqlDbType.NChar, 10, "用户角色");
da.UpdateCommand.Parameters.Add("@角色说明", SqlDbType.NChar, 10, "角色说明");
da.Fill(ds);
ds.Tables[0].Rows[dataGridView2.CurrentCell.RowIndex]["用户角色"] = dataGridView2.CurrentRow.Cells["用户角色"].Value;
ds.Tables[0].Rows[dataGridView2.CurrentCell.RowIndex]["角色说明"] = dataGridView2.CurrentRow.Cells["角色说明"].Value;
da.Update(ds);
dataGridView2.DataSource = ds.Tables[0];
con.Close();
这到底是为什么呢,网上有人说是toolStripButton不能把单元格的数据进行保存,但是我不知道怎么修改成不是单元格的进行数据修改。所以,请大家帮忙看下,要怎样实现更新功能!谢谢大家!
C#怎么获取当前单击的控件名称,比如有100个Button 一个button_Click() ,点击按钮后显示所点击的按钮名称
1、打开我们安装好的VS软件,并且新建一个winform窗口化程序。当然,c#语言还可以开发网页类软件。
2、从左边的工具箱中的公共控件中拖一个button按钮到我们新建的winform程序界面上,命名为‘测试’。
3、在按钮上双击两下,就进入到了这个控件的单击事件的代码编写页面。
4、在选中按钮的时候,右边会出现该控件的属性页面,找到闪电符号,进去选择要使用的功能也是 一样的效果。
5、在代码界面输入我们要实现的功能代码,这里是单击鼠标时弹出:"恭喜你,测试成功!"。
参考技术A private void button1_Click(object sender, EventArgs e)Button button = (Button)sender;
MessageBox.Show(button.Name);
追问
很给力 谢谢
本回答被提问者采纳 参考技术B 可以通过Click事件中传递过来的sender对象获取按钮名称(Button)sender.Name 参考技术C this.button.text.toString()追问
不行呀 this.button.text.toString() 中的button是没有的 他是从“button1”~“button100”的。就是不知道是哪一个button
以上是关于C# 为啥更新功能在普通button可以,在toolStripButton就不能实现功能呢?的主要内容,如果未能解决你的问题,请参考以下文章
c# winform 为啥 我用treeview做得导航界面,顺序不对,望高手支招。