ScrollViewer Overview .NET Framework 3.5 Other Versions Content within a user interface is often larger than a computer screen's display area. The ScrollViewer control provides a convenient way to enable scrolling of content in Windows Presentation Foundation (WPF) applications. This topic introduces the ScrollViewer element and provides several usage examples. This topic contains the following sections: The ScrollViewer Control Physical vs. Logical Scrolling Defining and Using a ScrollViewer Element Styling a ScrollViewer Paginating Documents Related Topics The ScrollViewer Control There are two predefined elements that enable scrolling in WPF applications: ScrollBar and ScrollViewer . The ScrollViewer control encapsulates horizontal and vertical ScrollBar elements and a content container (such as a Panel element) in order to display other visible elements in a scrollable area. You must build ...