gpt4 book ai didi

c# - 如何在 StackPanel 上使用边框

转载 作者:行者123 更新时间:2023-12-05 09:15:18 26 4
gpt4 key购买 nike

因此,我正在尝试(再次)在 WPF 中开发应用程序。我希望在我的 StackPanel 周围有漂亮的黑色边框和圆角 corenrs。为了做到这一点,我写了:

<Border x:Name="debugPanel" CornerRadius="10" BorderBrush="Black" BorderThickness="2" Grid.Row="5" Grid.Column="6" Grid.RowSpan="2">
<StackPanel Grid.RowSpan="3" Background="#C7C7C7">
<!--contents-->
</StackPanel>
</Border>

但是结果很丑:(见下图:

enter image description here

请注意它甚至可能是添加边框的错误方式,我只是自己想出来的。因此,如果您有任何建议和意见,我也很乐意听取。

最佳答案

在边框而不是 StackPanel 上设置背景:

<Border x:Name="debugPanel" Background="#C7C7C7" CornerRadius="10" BorderBrush="Black" BorderThickness="2" Grid.Row="5" Grid.Column="6" Grid.RowSpan="2">
<StackPanel Grid.RowSpan="3" Background="Transparent">
<!--contents-->
</StackPanel>
</Border>

关于c# - 如何在 StackPanel 上使用边框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52664839/

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