我有這個在我的表單設計器代碼:爲什麼的BindingSource = newBindingSource沒有刷新數據
this.referenceNumberTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.clientDetailBindingSource, "ClientDetails.ReferenceNumber", true));
在形式的方法它被顯示之前我說
this.clientDetailBindingSource = passedInBindingSource;
的控件是數據綁定到this.clientDetailBindingSource
不顯示任何數據。
我也試過在做ResetBindings()但沒有任何事情發生。
我知道,它聽起來很愚蠢,但是:當您在調試會話中檢查它時,新的綁定源實際上是否包含預期的數據?或者你使用靜態綁定的屬性描述符? – gimpf
它確實包含列表中的數據2項目 –
Jon