我想添加一個新的dataBinding到報表中的控件。DataBindings.Add添加一個IEnumerable <string>
通常我添加IEnumerable<someObject>
到我的綁定:
this.MyControl.DataBindings.Add("Text", this.CustomerDataSource, "Name");
但現在我想用一個IEnumerable<string>
this.MyControl.DataBindings.Add("Text", this.MyStringDatasource, "?");
會是什麼數據成員在這種情況下? (我正在使用devExpress的XtraReport)
請問您的數據源使用相同的對象類型?這是所有引擎蓋下的IEnumerable,所以你應該能夠使用相同的屬性名稱。 – Tejs 2011-04-08 15:41:41
你確定沒有這個雙參數過載嗎? – 2011-04-08 15:41:41
沒有雙參數超載。 – 2011-04-08 15:42:53