FrameworkElement.ArrangeOverride Method (Size)
When overridden in a derived class, positions child elements and determines a size for a FrameworkElement derived class.
Assembly: PresentationFramework (in PresentationFramework.dll)
abstract ArrangeOverride : finalSize:Size -> Size override ArrangeOverride : finalSize:Size -> Size
Parameters
- finalSize
-
Type:
System.Windows.Size
The final area within the parent that this element should use to arrange itself and its children.
Notes to Inheritors:
Control authors who want to customize the arrange pass of layout processing should override this method. The implementation pattern should call Arrange on each visible child element, and pass the final desired size for each child element as the finalRect parameter. Parent elements should call Arrange on each child, otherwise the child elements will not be rendered.
Many derived classes offer implementations of this method. Prominent ones include: Window.ArrangeOverride, Page.ArrangeOverride and Control.ArrangeOverride.
Available since 3.0
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0