Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何让 WPF 中的边框使用纯黑色矩形?它总是看起来有较粗的底部和左侧线条,我猜这是阴影效果,即使我没有应用任何效果。我不想使用矩形,因为我正在使用它在包含控件的网格周围应用边框。
尝试设置SnapsToDevicePixels="true"。像这样:
SnapsToDevicePixels="true"
<Border Width="200" Height="200" BorderBrush="Black" BorderThickness="1" SnapsToDevicePixels="true"></Border>
对我来说,这消除了边界的不同厚度。