这是使用我绑定数据源的以下解决方案。但tblData1
可能会在运行时更改。
tblData1
中的字段可以在运行时增加或减少,因此如何使用类的新结构刷新gridview。
XPInstantFeedbackSource instantDS = new XPInstantFeedbackSource(typeof(tblData1));
instantDS.ResolveSession += instantDS_ResolveSession;
instantDS.DismissSession += instantDS_DismissSession;
gridView1.GridControl.DataSource = instantDS;
答案 0 :(得分:0)
使用
gridView1.GridControl.RefreshDataSource();