gpt4 book ai didi

windows-runtime - Windows 应用商店应用角半径

转载 作者:行者123 更新时间:2023-12-04 06:59:00 26 4
gpt4 key购买 nike

我正在尝试开发一个带有圆角的 ListView。The rounded corners property is working, however I am having some issue when the top or bottom item is selected.那时,圆角被替换。

选择顶部和底部项目之间的某个节点是可以的:

enter image description here

然而,这是顶部和底部项目发生的情况:

enter image description here

*我知道 .Net WPF 应用程序中的技巧,您通常会在其中使用带圆角的 Clipping。但是,WinRT 似乎不支持裁剪中的圆角。

最佳答案

是的,所以,看...

让我用这个例子来回答这个问题:

<Border Width="100" Height="100" Margin="5"
Background="DimGray" CornerRadius="15">
</Border>

<Border Width="100" Height="100" Margin="5"
Background="DimGray" CornerRadius="15">
<Rectangle Height="100" Width="100" Fill="Purple" />
</Border>

<Border Width="100" Height="100" Margin="5" Padding="5"
Background="DimGray" CornerRadius="15">
<Rectangle Height="100" Width="100" Fill="Purple" />
</Border>

<Border Width="100" Height="100" Margin="5" Padding="5"
Background="Purple" CornerRadius="15">
<Rectangle Height="100" Width="100" Fill="Purple" />
</Border>

看起来像这样:

enter image description here

还有,为什么?因为 Windows 8 中的裁剪目前只支持矩形。不是多边形,不是圆角,什么都不是。示例中的第 4 项实际上是您目前唯一的方法。至少你有一个选择!

祝你好运!

关于windows-runtime - Windows 应用商店应用角半径,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15618831/

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