2016-01-20 164 views
-1

我知道如何在windows中隱藏標題欄:WindowStyle =「none」。但是,我怎麼能實現與頁面? 我有這樣的代碼:WPF頁面標題欄隱藏

<Page x:Class="SomeNamePage1" 
     xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 
     xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" 
     xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
     xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
     xmlns:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes" 
     xmlns:local="SomeName" 
     mc:Ignorable="d" 
     d:DesignHeight="700" d:DesignWidth="700" WindowHeight="700" WindowWidth="700" 
     Title="Page1" Background="#FFFFFF"> 

如何隱藏有相同的結果WindowStyle =「無」的標題欄?

回答

0

我想出這是不可能的。我解決了使用窗口作爲導航菜單的持有人以及在內容頁面之間切換的框架。 希望這可以幫助別人!