10

How can I add a scrollbar to the wrappanel control in WPF. Some of my controls are cutting off width wise due to the no scrollbar.

Dave Clemmer
  • 3,741
  • 12
  • 49
  • 72
azamsharp
  • 19,710
  • 36
  • 144
  • 222

1 Answers1

17

The ScrollViewer will be helpful for you in this situation. Otherwise, you'll need to use the ScrollBar control and manually control what's visible.

Usage example for the scrollviewer:

<DockPanel>
   <ScrollViewer VerticalScrollBarVisibility="Auto">
       <StackPanel />
   </ScrollViewer >
</DockPanel>
Stephen Wrighton
  • 36,783
  • 6
  • 67
  • 86