1

I am using WinRT XAML ListView in my desktop app.

While user interact with the listview, it shows a vertical scroll bar on the side. I want to hide this scroll bar always. I did some search with no luck. I've tried

ScrollViewer.VerticalScrollBarVisibility="False"

but it didn't work.

Can someone please help out on this issue? Is it possible to hide it?

Allan Jiang
  • 11,063
  • 27
  • 104
  • 165

1 Answers1

5

VerticalScrollBarVisibility is not a boolean. It's an enum, try:

VerticalScrollBarVisibility="Hidden"
Dani
  • 971
  • 12
  • 31