0
使用DevExpress組件作爲aspx,我創建了一個UserControl
,其中包含ASPxTreelist
控件,並在頁面中引用此UC。Devexpress UserControl,多個窗口
我在打開同一頁的兩個實例時遇到問題,我收到並且出現了Refresh
或Repaint
方法的錯誤。
錯誤說明:在其他線程使用的對象
我試着用InvokeRequired
來解決它,但它並沒有幫助。
使用DevExpress組件作爲aspx,我創建了一個UserControl
,其中包含ASPxTreelist
控件,並在頁面中引用此UC。Devexpress UserControl,多個窗口
我在打開同一頁的兩個實例時遇到問題,我收到並且出現了Refresh
或Repaint
方法的錯誤。
錯誤說明:在其他線程使用的對象
我試着用InvokeRequired
來解決它,但它並沒有幫助。
這段代碼可能會有幫助,因爲它使用相同的數據源,克隆數據可能會解決它。
private void UpdateGridDataSource(){
DataTable clone = data.Copy();
FillData(clone, deleting);
deleting = !deleting;
gridControl1.BeginInvoke(new MethodInvoker(delegate { gridControl1.DataSource = clone; }));
data = clone;
}