数据插入此 table 但 datagridview 显示为空值
Data is inserted in this table but the datagridview shows as null values
table.Rows.Add(tb_customer.Text, tb_Item_Name.Text, tb_BatchNo.Text, tb_packing.Text,tb_quantity.Text, tb_discount.Text, tb_Price.Text, tb_total_Price.Text, tb_date.Text);
dgv_invoiceRecords.DataSource = table;
根据您的标题,您想将文本框值插入数据表并使用
datagridview 显示它。
如果你想做,请参考下面的代码示例。
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
DataTable table = new DataTable();
private void button1_Click(object sender, EventArgs e)
{
table.Rows.Add(txtName.Text, txtAge.Text, txtID.Text, txtScore.Text);
dataGridView1.DataSource = table;
}
private void Form1_Load(object sender, EventArgs e)
{
table.Columns.Add("Name", typeof(string));
table.Columns.Add("Age", typeof(string));
table.Columns.Add("Id", typeof(string));
table.Columns.Add("Score", typeof(string));
}
}
如果以上代码不能解决您的问题,您可以提供具体的异常情况和完整的代码。
table.Rows.Add(tb_customer.Text, tb_Item_Name.Text, tb_BatchNo.Text, tb_packing.Text,tb_quantity.Text, tb_discount.Text, tb_Price.Text, tb_total_Price.Text, tb_date.Text); dgv_invoiceRecords.DataSource = table;
根据您的标题,您想将文本框值插入数据表并使用
datagridview 显示它。
如果你想做,请参考下面的代码示例。
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
DataTable table = new DataTable();
private void button1_Click(object sender, EventArgs e)
{
table.Rows.Add(txtName.Text, txtAge.Text, txtID.Text, txtScore.Text);
dataGridView1.DataSource = table;
}
private void Form1_Load(object sender, EventArgs e)
{
table.Columns.Add("Name", typeof(string));
table.Columns.Add("Age", typeof(string));
table.Columns.Add("Id", typeof(string));
table.Columns.Add("Score", typeof(string));
}
}
如果以上代码不能解决您的问题,您可以提供具体的异常情况和完整的代码。