C# Class ScreenScroller.TrackUniformGrid

This class overrides the Arrange method of the UniformGrid in order to arrange its children in a "track" way. instead of arranging them in the following way : 1 2 3 4 5 6 7 8 9 this Grid arranges that way : 1 2 3 6 5 4 7 8 9 It works for any number of children.
Inheritance: System.Windows.Controls.Primitives.UniformGrid
Show file Open project: Invenietis/ck-certified

Protected Methods

Method Description
ArrangeOverride ( Size arrangeSize ) : Size

Private Methods

Method Description
UpdateComputedValues ( ) : void

Directly taken from the underlying UniformGrid. Compute the default values for Column & Rows if they are not set.

Method Details

ArrangeOverride() protected method

protected ArrangeOverride ( Size arrangeSize ) : Size
arrangeSize System.Windows.Size
return System.Windows.Size