1. 程式人生 > >iframe中嵌套.xbap文件,去掉上部導航欄

iframe中嵌套.xbap文件,去掉上部導航欄

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文件,去掉上部導航欄