UniformGrid::ArrangeOverride Method (Size)

 

Defines the layout of the UniformGrid by distributing space evenly among all of the child elements.

Namespace:   System.Windows.Controls.Primitives
Assembly:  PresentationFramework (in PresentationFramework.dll)

protected:
virtual Size ArrangeOverride(
	Size arrangeSize
) override

Parameters

arrangeSize
Type: System.Windows::Size

The Size of the area for the grid to use.

Return Value

Type: System.Windows::Size

The actual Size of the grid that is rendered to display the child elements that are visible.

The arrangeSize parameter defines the space in the layout area that is available for the grid. For example, if there are two rows and four columns in a grid, the possible height for each cell is 0.5*arrangeSizeHeight and the maximum width is 0.25*arrangeSizeWidth. For these calculations, arrangeSizeHeight is the Height value of the arrangeSize parameter and arrangeSizeWidth is the Width value of the arrangeSize parameter.

.NET Framework
Available since 3.0
Return to top
Show: