StackPanel.ScrollOwner Property (System.Windows.Controls)

Switch View :
ScriptFree
.NET Framework Class Library
StackPanel.ScrollOwner Property

Gets or sets a value that identifies the container that controls scrolling behavior in this StackPanel.

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
Public Property ScrollOwner As ScrollViewer
	Get
	Set
C#
public ScrollViewer ScrollOwner { get; set; }
Visual C++
public:
virtual property ScrollViewer^ ScrollOwner {
	ScrollViewer^ get () sealed;
	void set (ScrollViewer^ value) sealed;
}
F#
abstract ScrollOwner : ScrollViewer with get, set
override ScrollOwner : ScrollViewer with get, set
XAML Property Element Usage
<object>
  <object.ScrollOwner>
    <ScrollViewer .../>
  </object.ScrollOwner>
</object>

Property Value

Type: System.Windows.Controls.ScrollViewer
The ScrollViewer that owns scrolling for this StackPanel. This property has no default value.

Implements

IScrollInfo.ScrollOwner
Remarks

If a ScrollViewer control is the ScrollOwner, physical scrolling is enabled. If a StackPanel is the ScrollOwner, scrolling is logical by child element.

Version Information

.NET Framework

Supported in: 4, 3.5, 3.0

.NET Framework Client Profile

Supported in: 4, 3.5 SP1
Platforms

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
See Also

Reference

Other Resources