有没有办法使用 Windows Presentation Foundation 创建类似于原生 Windows 7 通知区域 Windows 的窗口?例如音频控件或电源计划设置。
我能够创建一个看起来相同的 Windows 窗体窗口,但是当您将鼠标悬停在边框上时,仍然有调整大小的光标。我正在使用以下代码:
<Window x:Class="WpfApplication1.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
ResizeMode="NoResize" ShowInTaskbar="False" Topmost="True"
DataContext="{Binding}" WindowStyle="SingleBorderWindow"
WindowStartupLocation="Manual" ShowActivated="False"
IsManipulationEnabled="False" mc:Ignorable="d"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
d:DesignHeight="218" d:DesignWidth="368" SizeToContent="WidthAndHeight">
<Grid>
</Grid>
</Window>
我的问题是我无法完全删除标题栏和关闭按钮。或者是否有可用于创建此类窗口的库?
我想发布屏幕截图,但由于我还没有 10 个声望点,所以我无法发布。
谢谢你的帮助!