作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我刚开始使用 GroupBoxes,我只是想知道为什么我不能让我的角落变得锋利,好像它是一个矩形。
我在网上看到过一些,而且他们的角落都不是圆的。这是为什么?
<GroupBox x:Name="howTOGroupBox" BorderBrush="White" Foreground="White" Header="How To" HorizontalAlignment="Left" Margin="88,86,0,0" VerticalAlignment="Top" Height="79" Width="221" BorderThickness="1"/>
最佳答案
您可以设置您的 GroupBox ControlTemplate 的样式并将所有角舍入为 0:
<Window.Resources>
<Style TargetType="GroupBox">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="GroupBox">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition Height="*" />
</Grid.RowDefinitions>
<Border Grid.Row="0"
BorderThickness="1" BorderBrush="White"
CornerRadius="0,0,0,0">
<ContentPresenter
ContentSource="Header"
RecognizesAccessKey="True" />
</Border>
<Border Grid.Row="1" BorderBrush="White"
BorderThickness="1"
CornerRadius="0,0,0,0">
<ContentPresenter Margin="4" />
</Border>
</Grid>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</Window.Resources>
关于c# - 如何将 groupBox 的角更改为尖角而不是圆形 C# .NET WPF,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40061338/
我有一个 UIWebView 并使用 QuartzCore 为其添加一些样式。但是当我执行时: UIWebView *webView = [[UIWebView alloc] initWithFram
我是一名优秀的程序员,十分优秀!