码迷,mamicode.com
首页 > 其他好文 > 详细

iframe中嵌套.xbap文件,去掉上部导航栏

时间:2017-07-05 20:04:20      阅读:181      评论:0      收藏:0      [点我收藏+]

标签:arp   windows   csharp   bsp   name   show   idt   this   blog   

当我们在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文件,去掉上部导航栏

标签:arp   windows   csharp   bsp   name   show   idt   this   blog   

原文地址:http://www.cnblogs.com/kimiGuo/p/7123016.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!