如何在c中使用数据库表的一行数据动态创建按钮click事件#

nzkunb0c  于 2021-06-18  发布在  Mysql
关注(0)|答案(0)|浏览(201)

在c#windows窗体中。假设我的表中有10行。都有名字和年龄。如何动态创建一个使用按钮click.event中一行的所有数据的按钮?
例如,第一个按钮使用name1和age1值第二个按钮使用name2和age2值。。。等等。。。
感谢您的回复!
编辑:button=new button();button.click+=新建事件处理程序(button\u click);

protected void button_Click (object sender, EventArgs e)
{
     Button button = sender as Button;
    // identify which button was clicked and perform.  
necessary actions
//sql query to retrieve data from database
Txtbox.text=//row n Name
Txtbox2.text=//row n Age

//where n is the row number
}

其中每个创建的按钮都有一个不同的按钮,单击时也有不同的txtbox.text=value
如果我不能准确地解释的话,我很抱歉。

暂无答案!

目前还没有任何答案,快来回答吧!

相关问题