GridControl不刷新界面问题
第一次加载窗口,编辑gridcontrol,点刷新可以,编辑的内容消失了,可是关闭窗口后再次打开,编辑后点刷新,编辑的内容还在,也不能更新到数据源了,求大神门指点!!!private void DataLoad()
{
string strSql = "SELECT * FROM dbo.B_Bill_Info_SaleDate ORDER BY c_Day";
dt = DBCommon.SQLSearch(strSql);
dt.Tables.TableName = "B_Bill_Info_SaleDate";
gridControl1.DataSource = dt.Tables;
}
private void btnInfoSaleDateRefresh_ItemClick(object sender, ItemClickEventArgs e)
{
try
{
dt.Tables.Clear();
DataLoad();
}
catch (Exception ex) { throw new Exception(ex.ToString()); }
}
gridControl1.DataSource要重新赋值。
gridControl1.DataSource =null;
gridControl1.DataSource = dt.Tables; 楼上正解
页:
[1]