System.Windows.Controls Nam ...


.NET Framework Class Library
ScrollContentPresenter Class

Displays the content of a ScrollViewer control.

Namespace:  System.Windows.Controls
Assembly:  PresentationFramework (in PresentationFramework.dll)
XMLNS for XAML: http://schemas.microsoft.com/winfx/2006/xaml/presentation, http://schemas.microsoft.com/netfx/2007/xaml/presentation
Syntax

Visual Basic (Declaration)
Public NotInheritable Class ScrollContentPresenter _
    Inherits ContentPresenter _
    Implements IScrollInfo
Visual Basic (Usage)
Dim instance As ScrollContentPresenter
C#
public sealed class ScrollContentPresenter : ContentPresenter, 
    IScrollInfo
Visual C++
public ref class ScrollContentPresenter sealed : public ContentPresenter, 
    IScrollInfo
JScript
public final class ScrollContentPresenter extends ContentPresenter implements IScrollInfo
XAML Object Element Usage
<ScrollContentPresenter .../>
Remarks

The ScrollContentPresenter class provides support for styling the various components of a ScrollViewer control. For information about the scrolling region inside a ScrollViewer, see IScrollInfo.

Examples

The following example demonstrates how to use a ScrollContentPresenter to style the content of a ScrollViewer control.

XAML
<Style TargetType="{x:Type ScrollViewer}">
  <Setter Property="Template">
    <Setter.Value>
      <ControlTemplate>
        <Grid>
          <Grid.ColumnDefinitions>
            <ColumnDefinition Width="Auto"/>
            <ColumnDefinition Width="*"/>
            <ColumnDefinition Width="Auto"/>
          </Grid.ColumnDefinitions>
          <Grid.RowDefinitions>
            <RowDefinition Height="*"/>
            <RowDefinition Height="Auto"/>
          </Grid.RowDefinitions>
          <Border Grid.Row="0" Grid.Column="1">
            <ScrollContentPresenter Content="{TemplateBinding ScrollViewer.Content}" />
          </Border>
          <RepeatButton Grid.Column="0" Style="{DynamicResource ScrollBar_LineButton}" Command="ScrollBar.LineLeftCommand" Content="M 0 3.5 L 4 0 L 4 7 Z" />
          <RepeatButton Grid.Column="2" Style="{DynamicResource ScrollBar_LineButton}" Command="ScrollBar.LineRightCommand" Content="M 0 0 L 4 3.5 L 0 7 Z" />
        </Grid>
      </ControlTemplate>
    </Setter.Value>
  </Setter>
</Style>
Inheritance Hierarchy

System..::.Object
  System.Windows.Threading..::.DispatcherObject
    System.Windows..::.DependencyObject
      System.Windows.Media..::.Visual
        System.Windows..::.UIElement
          System.Windows..::.FrameworkElement
            System.Windows.Controls..::.ContentPresenter
              System.Windows.Controls..::.ScrollContentPresenter
Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Platforms

Windows 7, Windows Vista, Windows XP SP2, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Version Information

.NET Framework

Supported in: 3.5, 3.0
See Also

Reference

Other Resources

Tags :


Page view tracker