GridList<T>.CreateWithRows
CreateWithRows(IList<T>, int)
Wraps the provided source in a GridList<T> with a dynamic number of columns and a fixed number of rows
Declaration
public static GridList<T> CreateWithRows(IList<T> source, int rows)
Parameters
| Type | Name | Description |
|---|---|---|
| IList<T> | source | The underlying list to wrap in a in a GridList<T> |
| int | rows | The number of rows in the grid |
Returns
| Type | Description |
|---|---|
| GridList<T> | A new grid wrapping |