我有一个 Pivot-Page 应用程序,每个不同的页面都有不同的应用程序栏。app-bar 中的方法都在 app.xaml.cs 中声明,但所有输入元素都在 MainPage.xaml.cs 中。
我的一个应用程序栏上有一个登录按钮,但在 app.xaml.cs 中我无法访问文本框等。
创建 MainPage 的新实例没有帮助,因为所有文本框值都是空的。是的,我在 MainPage 中的方法是公开的,但MainPage.method();
不起作用。
如何从 app.xaml.cs 调用 MainPage.xaml.cs 中的方法,该方法使用 MainPage 的文本框?