私は Winforms DevExpress を使用しており、正常に動作している DataGridView に DataTable をバインドしています。私が抱えている問題は、DataGridView にバインドされている元の DataTable を置き換える必要がある元のオブジェクトとは別の新しい DataTable オブジェクトを作成する関数がいくつかあることです。
DataTable originalTable = new DataTable("OriginalTable");
//Populate originalTable
myDataGridControl.DataSource = originalTable;
上記のコードではすべて正常に動作しますが、次のコードは新しい DataTable を作成し、myDataGridControl の DataSource として設定する必要があります。
DataTable newTable = new DataTable("NewTable");
//Populate newTable
//Set newTable as the DataSource for myDataGridControl
myDataGridControl.DataSource = newTable;
RefreshDataSource()、Refresh() を呼び出し、DataSource を null に設定するなど、この作業を行うためにいくつかの異なる試みを試みました。私はまだそれを機能させていません。どうすればいいですか?