Window.ArrangeOverride Method (System.Windows)

Switch View :
ScriptFree
.NET Framework Class Library
Window.ArrangeOverride Method

Override this method to arrange and size a window and its child elements.

Namespace:  System.Windows
Assembly:  PresentationFramework (in PresentationFramework.dll)
Syntax

Visual Basic
Protected Overrides Function ArrangeOverride ( _
	arrangeBounds As Size _
) As Size
C#
protected override Size ArrangeOverride(
	Size arrangeBounds
)
Visual C++
protected:
virtual Size ArrangeOverride(
	Size arrangeBounds
) override
F#
abstract ArrangeOverride : 
        arrangeBounds:Size -> Size 
override ArrangeOverride : 
        arrangeBounds:Size -> Size 

Parameters

arrangeBounds
Type: System.Windows.Size
A Size that reflects the final size that the window should use to arrange itself and its children.

Return Value

Type: System.Windows.Size
A Size that reflects the actual size that was used.
Remarks

ArrangeOverride is not called when the Visibility property has a value of Collapsed. If the value of the Visibility property is either Hidden or Visible, ArrangeOverride is called.

Note Note

When either Show or ShowDialog are called, the Visibility property of a Window is set to Visible.

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