2
DocumentControl是我的用戶,我已經寫了下面的在我的功能線,但我得到的價值爲空白。如何訪問Silverlight中另一頁上userControl的控件值?
var DocumentControl1 = new DocumentControl();
string docCode= DocumentControl1.txtDocCode.Text;
DocumentControl是我的用戶,我已經寫了下面的在我的功能線,但我得到的價值爲空白。如何訪問Silverlight中另一頁上userControl的控件值?
var DocumentControl1 = new DocumentControl();
string docCode= DocumentControl1.txtDocCode.Text;
將txtDocCode的值作爲docCode保存在公共變量中。您可以訪問這樣的價值,
DocumentControl1 d= new DocumentControl();
string docCode = d.DocCode;