本文介绍了在Windows中的网格中绑定文本框值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个文本框和一个按钮
单击按钮后,我们必须在Windows中的数据网格中显示该数据.
I have text box and a button
After button click we have to show that data in my datagrid in windows.
推荐答案
private void button1_Click(object sender, EventArgs e)
{
DataTable dtToGrid = new DataTable();
DataRow drToGrid;
dtToGrid.Columns.Add(new DataColumn("EMP_ID", typeof(string)));
dtToGrid.Columns.Add(new DataColumn("EMP_FName", typeof(string)));
dtToGrid.Rows.Add();
dtToGrid.Rows[0][0] = txt_empid.Text;
dtToGrid.Rows[0][1] = txt_fname.Text;
dataGridView.DataSource = dtToGrid;
}
这篇关于在Windows中的网格中绑定文本框值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!