类中调用控件问题?
在类中用控件作为传递参数,可是为什么提示缺少Using的引用集[code=C#][/code]
public void BdDataGridView(DataGridView dgv, string sql)
{
SqlDataAdapter sda = new SqlDataAdapter(sql, conn);//创建数据适配器对象
DataSet ds = new DataSet();//创建数据集对象
sda.Fill(ds);//填充数据集
dgv.DataSource = ds.Tables[0];//绑定到数据表
ds.Dispose();//释放资源
}
------解决方案--------------------
public void BdDataGridView(System.Windows.Forms.DataGridView dgv, string sql)
如果没有引用名称空间的话,需要使用全名