WPF 页面标题栏隐藏

本文关键字:隐藏 标题栏 WPF | 更新日期: 2023-09-27 18:31:15

我知道如何在窗口中隐藏标题栏:WindowStyle="none"。但是,如何通过主页实现这一点呢?我有这样的代码:

<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" 具有相同结果的标题栏?

WPF 页面标题栏隐藏

我发现这是不可能的。我解决了使用窗口作为导航菜单的持有人和在内容的页面之间切换的框架的问题。希望这对其他人有所帮助!