我正在使用樣式表的WPF。在我的Style
中,我一直在嘗試定製CheckBox
的虛線焦點邊框的外觀。我需要的焦點邊界只能圍繞廣場而不是整個控制。WPF複選框樣式使焦點邊界表現不佳
我將我的樣式寬度設置爲15,並且虛線邊框是正確的,但不包圍正方形,它的邊到邊。
我已經包括了風格。
感謝您的幫助。
樣式表片段:
<Setter Property="Control.Template">
<Setter.Value>
<ControlTemplate>
<Rectangle StrokeThickness="1" Stroke="Black" StrokeDashArray="1 2" SnapsToDevicePixels="true" Width="15"/>
</ControlTemplate>
</Setter.Value>
</Setter>
感謝您的幫助! – SetiSeeker 2010-10-21 12:22:00
不客氣:) – 2010-10-21 12:25:11