WP7框架嵌入在链接到另一个页面的页面中
我有一个 xaml 页面,出于各种原因我想托管另一个 xaml 页面。我尝试使用 Frame 控件,但最终收到一条警告,告诉我默认构造函数必须是公共的...
<controls:PivotItem Header="page1">
<Controls:Frame Source="MyPage.xaml"/>
</controls:PivotItem>
好吧,那是行不通的;现在我到底如何在 WP7 应用程序中将一个页面嵌入到另一个页面中?
I have a xaml page that I want to host another xaml page for various reasons. I attempted to use the Frame control, but I ended up with a warning telling me that the default constructor must be public...
<controls:PivotItem Header="page1">
<Controls:Frame Source="MyPage.xaml"/>
</controls:PivotItem>
Okay, well that doesn't work; now how exactly do I embed a page inside of another page in a WP7 application?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是带有枢轴的 XAML 页面的典型布局 -
视图命名空间在 XAML 中声明为 -
每个视图都将位于其单独的 XAML 文件中,例如 (Page1View.xaml) 看起来像这样 -
希望这会有所帮助,
印地弗罗兹
This is a typical layout of a XAML page with a Pivot -
The views namespace is declared within the XAML as -
Each view will be in their individual XAML files, for example (Page1View.xaml) looks like this -
Hope this helps,
indyfromoz