我想为GridSplitter
水平和垂直的人设置不同的背景。这是因为我有一个线性渐变,我需要根据网格拆分器的对齐方式将其旋转 90 度。
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<Style TargetType="{x:Type GridSplitter}">
<Setter Property="Background" Value="Red" /> <!-- How to get this red applied to only Vertical for instance? -->
</Style>
</ResourceDictionary>
所以问题是:如何分别针对垂直拆分器和水平拆分器?