如何在 Silverlight 4 中访问活动页面



快速问题..我正在尝试使用 JavaScript 访问启动时加载的特定页面上的 UI 控件。

我的主页使用框架来显示特定页面。在 App.xaml 中.cs我想访问此特定页面上的 UI 控件。

访问主页是可行的:

MainPage m = (MainPage)Application.Current.RootVisual;
m.testField.Text = "Working!";

但是,如何访问加载到MainPage.xaml.cs框架中的页面?

亲切问候尼尔斯

希望这有帮助。.

MainPage page = Application.Current.RootVisual as MainPage;
LoadedPage myPage = page.frame.Content as LoadedPage;

相关内容

  • 没有找到相关文章

最新更新