2012-11-08 70 views
0

什麼是BindingContext的程序集引用?我使用C#贏應用此代碼,但它給了我錯誤BindingContext的程序集引用

txt_barcode_num_pri.BindingContext .ToString (TextBox).UpdateSource(); 

       if (txt_barcode_num_pri.GetBindingExpression(c).HasError) 

回答

1

使用此BindingContext Reference

你可以找到BindingContext命名空間System.Windows.Forms大會System.Windows.Forms(在System.Windows.Forms的.DLL)

嘗試使用這樣的代碼:

var bindingContext = txt_barcode_num_pri.BindingContext[dataSource]; 

其中dataSourceDataSource對象。

OR

var bindingContext = txt_barcode_num_pri.BindingContext[dataSet, "DataMember"]; 
+0

是1號線的語法是正確的? – shadi

+0

你可以進一步闡述你的代碼你想達到什麼目的?如果你爲了更好的理解而設計你的代碼,這也會很有幫助。 –

+0

此代碼存在於wpf中,因爲我想在我的項目中使用activex,並且我不能在wpf中使用activex,所以我將我的代碼轉移到贏得應用程序c#,並且此行在此環境中給我錯誤 – shadi