我知道如何在windows中隐藏标题栏:WindowStyle =“none”。但是我如何通过Pages实现这一目标? 我有这样的代码:
<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 =“None”相同的结果隐藏标题栏?
答案 0 :(得分:1)
我发现这是不可能的。我解决了使用Window作为导航菜单的持有者和在页面之间切换内容的框架。 希望这有助于其他人!