iframe中嵌套.xbap文件,去掉上部导航栏
Posted kimi1908
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iframe中嵌套.xbap文件,去掉上部导航栏相关的知识,希望对你有一定的参考价值。
当我们在iframe标签中嵌套一个.xbap的时候,页面上部会显示出一个导航栏,如何去掉它呢?
有两种方式:
(1)我们可以加在xaml中:
<Page xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Title="HomePage" ShowsNavigationUI="False" >
(2)也可以加在后台代码中:
using System; using System.Windows; using System.Windows.Controls; namespace CSharp { public partial class HomePage : Page { public HomePage() { InitializeComponent(); // Hide host\'s navigation UI this.ShowsNavigationUI = false; } } }
亲测有效,棒,棒,棒!
以上是关于iframe中嵌套.xbap文件,去掉上部导航栏的主要内容,如果未能解决你的问题,请参考以下文章
去滚动条 DIV 嵌套iframe,iframe 里转一个放flash的页面。在页面显示层的时候 有滚动条而且四周还有空白