在wp7开发时,我们常常需要在页面间传递参数,以下是一种比较实用的方法:直接调用项目中的App类,将数据存储到这个类中。
假设页面 page1 要将用户名和密码传递给页面 page2:
1、在页面 page1 中,写入以下代码:
string userName = "test";
string password = "test";
App app = Application.Current as App;
public Page1()
{
}InitializeComponent();
app.strUserName = userName;
app.strPassword = password;
2、在页面 page2 中,写入以下代码:
App app = Application.Current as App;
public Page2()
{
}InitializeComponent();
string userName = app.strUserName;
string password = app.strPassword;
这样页面 page1 中的用户名和密码就传递到页面 page2 中了。