Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>If you want to have ListView in an panel without ScrollBars then simply disable them like this:</p> <pre><code>&lt;ListView ScrollViewer.VerticalScrollBarVisibility="Hidden" ScrollViewer.HorizontalScrollBarVisibility="Hidden" .../&gt; </code></pre> <p><a href="http://msdn.microsoft.com/en-us/library/system.windows.controls.scrollviewer.horizontalscrollbarvisibility(v=vs.110).aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.windows.controls.scrollviewer.horizontalscrollbarvisibility(v=vs.110).aspx</a></p> <p><a href="http://msdn.microsoft.com/en-us/library/system.windows.controls.scrollviewer.verticalscrollbarvisibility(v=vs.110).aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.windows.controls.scrollviewer.verticalscrollbarvisibility(v=vs.110).aspx</a></p> <p>If you wish to have a separate ScrollViewer that will do the scrolling in ListView then Binding the properties of that ScrollViewer with the ScrollViewer in ListView.</p> <p>Or you could move the ScrollViewer inside ListView by using ScrollToVertialOffset or ScrollToHorizontalOffset.</p> <p><a href="http://msdn.microsoft.com/en-us/library/system.windows.controls.scrollviewer.scrolltoverticaloffset(v=vs.110).aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.windows.controls.scrollviewer.scrolltoverticaloffset(v=vs.110).aspx</a></p> <p><a href="http://msdn.microsoft.com/en-us/library/system.windows.controls.scrollviewer.scrolltohorizontaloffset(v=vs.110).aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.windows.controls.scrollviewer.scrolltohorizontaloffset(v=vs.110).aspx</a></p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload