gpt4 book ai didi

c# - 将窗口按钮置于最前面

转载 作者:可可西里 更新时间:2023-11-01 10:27:45 24 4
gpt4 key购买 nike

我目前正在为 Windows 开发 Twitter 应用程序,类似于 OSX 的 Twitter 客户端。

我正在使用找到的 Windows Shell 扩展库 here使整个窗口Aero,并能够超出指定窗口位置的范围。

我希望窗口按钮(最小化、最大化、关闭)显示在具有白色背景的网格上方。这是我认为会内置到 Windows 中的功能,但显然我错了。

下面的两张图片说明了我的观点。在第二张图片中,我希望窗口按钮优先于白色背景网格,而不是像显示的那样相反。

是否有某种代码片段或 XAML 片段可以帮助我?以前有没有其他人遇到过这个问题?

Window sized so that buttons show Window sized so that buttons don't show.

最佳答案

我偶然发现了一个简单但肮脏的解决方案。我只是在 Windows 按钮的外部做了一条路径,并将外部的背景设置为白色,或者我使用的任何背景颜色。然后我只是将矩形拼凑在一起,让它看起来不错。

这是生成的代码:

<Grid HorizontalAlignment="Stretch" VerticalAlignment="Top" Grid.Row="0" Height="20">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="1.0*" />
<ColumnDefinition Width="105" />
<ColumnDefinition Width="5" />
</Grid.ColumnDefinitions>
<Rectangle Grid.Column="0" Fill="#FFFFFFFF" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" />
<Path HorizontalAlignment="Stretch" Grid.Column="1" Stretch="Fill" VerticalAlignment="Bottom" Height="20" Fill="#FFFFFFFF" Data="M 0,4.11334L 4.008,4.11334C 1.792,4.11334 0,2.27332 0,0L 0,4.11334 Z M 140,4.11334L 135.957,4.11334C 138.192,4.11334 140,4.11334 140,0L 140,4.11334 Z " />
<Border Grid.Column="2" CornerRadius="0, 10, 0, 0" Background="#FFFFFFFF" BorderThickness="0" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" />
</Grid>

这是生成的图像:

enter image description here

关于c# - 将窗口按钮置于最前面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9746677/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com