How to find Vertical Scrollbar width of a Scrollvi

2019-01-25 02:21发布

I have a ScrollViewer and in that I am showing the Vertical Scrollbar, Now on changing resolution of the system I want to get the width of the scrollbar. I went through One StackOverflow Post there they mention to check for SystemParameters.ScrollWidth Property but again I din find any help from their. Can anybody please help me to fix my issue. Any answer will be appreciated.

2条回答
兄弟一词,经得起流年.
2楼-- · 2019-01-25 03:01

I think SystemParameters.VerticalScrollBarWidth is what you are looking for.

查看更多
【Aperson】
3楼-- · 2019-01-25 03:18

I am not sure if this is the correct answer. Every WPF control can be restyled so even the scrollbar. So SystemParameters.VerticalScrollBarWidth works only if it is used as default scrollbar. The correct solution would be to find the vertical scrollbar in the visual tree and measure it's ActualWidth. It is the most precise measurement.

查看更多
登录 后发表回答