What does SnapsToDevicePixels in WPF mean in layman terms?

前端 未结 2 1716
忘了有多久
忘了有多久 2021-01-04 05:19

Anybody? Say I have a Window Class and I give SnapsToDevicePixels = true? what happens?

2条回答
  •  南方客
    南方客 (楼主)
    2021-01-04 05:55

    It will enable pixel snapping for every element in your window as this property is inherited by child UI elements. It won't have an effect on the appearance of the window itself, though (i. e. window frame or similar), since windows reside on integral coordinates on the screen already, anyway.

提交回复
热议问题