C# Class WinRTXamlToolkit.Controls.UniformGrid

Provides a way to arrange content in a grid where all the cells in the grid have the same size.
Inheritance: Windows.UI.Xaml.Controls.Panel
Show file Open project: xyzzer/WinRTXamlToolkit

Public Properties

Property Type Description
ColumnsProperty Windows.UI.Xaml.DependencyProperty
FirstColumnProperty Windows.UI.Xaml.DependencyProperty
RowsProperty Windows.UI.Xaml.DependencyProperty

Protected Methods

Method Description
ArrangeOverride ( Size arrangeSize ) : Size

Provides the behavior for the Arrange pass of layout. Classes can override this method to define their own Arrange pass behavior.

MeasureOverride ( Size constraint ) : Size

Provides the behavior for the Measure pass of the layout cycle. Classes can override this method to define their own Measure pass behavior.

Private Methods

Method Description
UpdateComputedValues ( ) : void

Method Details

ArrangeOverride() protected method

Provides the behavior for the Arrange pass of layout. Classes can override this method to define their own Arrange pass behavior.
protected ArrangeOverride ( Size arrangeSize ) : Size
arrangeSize Windows.Foundation.Size /// The final area within the parent that this object should use to arrange itself /// and its children. ///
return Windows.Foundation.Size

MeasureOverride() protected method

Provides the behavior for the Measure pass of the layout cycle. Classes can override this method to define their own Measure pass behavior.
protected MeasureOverride ( Size constraint ) : Size
constraint Windows.Foundation.Size /// The available size that this object can give to child objects. Infinity can /// be specified as a value to indicate that the object will size to whatever /// content is available.
return Windows.Foundation.Size

Property Details

ColumnsProperty public static property

Identifies the Columns dependency property.
public static DependencyProperty,Windows.UI.Xaml ColumnsProperty
return Windows.UI.Xaml.DependencyProperty

FirstColumnProperty public static property

Identifies the FirstColumn dependency property.
public static DependencyProperty,Windows.UI.Xaml FirstColumnProperty
return Windows.UI.Xaml.DependencyProperty

RowsProperty public static property

Identifies the Rows dependency property.
public static DependencyProperty,Windows.UI.Xaml RowsProperty
return Windows.UI.Xaml.DependencyProperty