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"];
}
...認爲該選項僅適用於Web窗體而不是您的winFroms – whytheq