Share via


UIElement.ArrangeOverride Method

Positions child elements and determines a size for a UIElement-derived class when implemented in a derived class.

Namespace: Microsoft.SPOT.Presentation
Assembly: Microsoft.SPOT.TinyCore (in microsoft.spot.tinycore.dll)

Syntax

protected virtual void ArrangeOverride (
         intarrangeWidth,
         intarrangeHeight
)

Parameters

  • arrangeWidth
    The width of the final area within the parent in which the current element will arrange itself and its children.
  • arrangeHeight
    The height of the final area within the parent in which the current element will arrange itself and its children.

Remarks

Your implementation of the ArrangeOverride method is called internally by the Arrange method as part of default layout operations.

Computation of layout positioning in Windows Presentation Foundation (WPF) consists of a Measure method call and an Arrange method call. During the Measure call, an element determines its size requirements, using the specified available sizes. During the Arrange call, the element size is finalized and returned.

Version Information

Available in .NET Micro Framework version 2.0, 2.5

See Also

Reference

UIElement Class
UIElement Members
Microsoft.SPOT.Presentation Namespace