如何将一个页面的texbox值添加到另一个页面。
E.g:
我有两个XAML页面,例如“Employee.xmal”& “EmployeePersonal.xmal”。
我想将Employee.xmal texbox值传递给EmployeePersonal.xmal页面。
你能帮我解决这个问题。
答案 0 :(得分:0)
参考 - https://stackoverflow.com/a/22381851/5533217
变量名称示例= DeptName
在App.xaml中声明变量,即
public string DeptName { get; set; }
在页面1中分配值
(App.Current as App).DeptName = "test";
然后调用第2页
中的值string selected_dept = (App.Current as App).DeptName;