如果我在页面上设置边框样式,我会在页面上得到一个边框。
如果我拿走样式,那么边框就会消失(但样式也会消失)。
但我需要页面中使用的几个边框的边框样式。
如何有边框样式但页面上没有边框?
<Page.Resources>
<Style TargetType="Border">
<Setter Property="VerticalAlignment" Value="Stretch" />
<Setter Property="Margin" Value="3" />
<Setter Property="BorderBrush" Value="Steelblue" />
<Setter Property="BorderThickness" Value="3,2.7,3,2.7" />
<Setter Property="CornerRadius" Value="3" />
</Style>
</Page.Resources>
<Grid>
<TabControl>