使用Monotouch访问跨视图的TextField值

时间:2011-12-14 03:18:04

标签: .net mono xamarin.ios

我有一个用户名和登录界面;输入密码。我点击提交并致电:

this.PresentModalViewController(new Screen2(), true);

在屏幕2上如何获取用户名文本框的值?

1 个答案:

答案 0 :(得分:2)

你可以这样做:

var newScreen = new Screen2 (username.Text, password.Text);
this.PresentModalViewController (newScreen, true);