iframe中嵌套.xbap文件,去掉上部導航欄
阿新 • • 發佈:2017-07-05
system ges 方式 public .cn home .sh 親測 image
當我們在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文件,去掉上部導航欄