DataSet 在 Tables
收藏中添加表格, 您可以通过索引或表格名称从中访问这些表格 。
为您的按钮创建共同事件, 在 Form_Load 上创建如下 :
btn1.Click += new EventHandler(Button_Click);
btn2.Click += new EventHandler(Button_Click);
事件方法为 :
void Button_Click(object sender, EventArgs e)
{
if ((sender as Button) == btn1)
{
dataGridView1.DataSource = ds.Tables[0];
}
else if ((sender as Button) == btn2)
{
dataGridView1.DataSource = ds.Tables[1];
}
}
/////
if(b==1)
{
dataGridView1.DataSource = ds.Tables[0];
}
else if(b==2)
{
dataGridView1.DataSource = ds.Tables[1];
}
例如:
DataTable dt = new DataTable("Table1");
DataTable dt2 = new DataTable("Table2");
DataSet ds = new DataSet();
ds.Tables.Add(dt);
ds.Tables.Add(dt2);
//Now you can access these as:
if(b==1)
{
dataGridView1.DataSource = ds.Tables["Table1"];
}
else if(b==2)
{
dataGridView1.DataSource = ds.Tables["Table2"];
}