0
什麼是BindingContext的程序集引用?我使用C#贏應用此代碼,但它給了我錯誤BindingContext的程序集引用
txt_barcode_num_pri.BindingContext .ToString (TextBox).UpdateSource();
if (txt_barcode_num_pri.GetBindingExpression(c).HasError)
什麼是BindingContext的程序集引用?我使用C#贏應用此代碼,但它給了我錯誤BindingContext的程序集引用
txt_barcode_num_pri.BindingContext .ToString (TextBox).UpdateSource();
if (txt_barcode_num_pri.GetBindingExpression(c).HasError)
你可以找到BindingContext
下命名空間System.Windows.Forms
在大會,System.Windows.Forms
(在System.Windows.Forms的.DLL)
嘗試使用這樣的代碼:
var bindingContext = txt_barcode_num_pri.BindingContext[dataSource];
其中dataSource是DataSource
對象。
OR
var bindingContext = txt_barcode_num_pri.BindingContext[dataSet, "DataMember"];
是1號線的語法是正確的? – shadi
你可以進一步闡述你的代碼你想達到什麼目的?如果你爲了更好的理解而設計你的代碼,這也會很有幫助。 –
此代碼存在於wpf中,因爲我想在我的項目中使用activex,並且我不能在wpf中使用activex,所以我將我的代碼轉移到贏得應用程序c#,並且此行在此環境中給我錯誤 – shadi