Basically I need to know the ScrollViewer
ScrollBar width.
This answer How to find Vertical Scrollbar width of a Scrollviewer in C#
doesn't work
SystemParameters.VerticalScrollBarWidth
Any clue?
Basically I need to know the ScrollViewer
ScrollBar width.
This answer How to find Vertical Scrollbar width of a Scrollviewer in C#
doesn't work
SystemParameters.VerticalScrollBarWidth
Any clue?
I found solution here Changing the width of a vertical scrollbar
ScrollBar vertical = ((FrameworkElement)VisualTreeHelper.GetChild(scrollviewer1, 0)).FindName("VerticalScrollBar") as ScrollBar;
var w = vertical.Width;