public GridLayout GetGridLayout() { var result = new GridLayout(12); result.AddRow().AddCell(12, "Top", "Top", GridLayoutCellType.Placeholder); var contentRow = result.AddRow(); contentRow.AddCell(9, "Main", "Main", GridLayoutCellType.Placeholder); contentRow.AddCell(3, "Right", "Right", GridLayoutCellType.Placeholder); result.AddRow().AddCell(12, "Bottom", "Bottom", GridLayoutCellType.Placeholder); return result; }
private static LinqIt.Components.GridLayout GetWidePageLayout(int columns) { var result = new GridLayout(12); result.AddRow().AddCell(12, "Top", "Top", GridLayoutCellType.Placeholder); var contentRow = result.AddRow(); for (int i = 1; i <= columns; i++) { contentRow.AddCell(12 / columns, "Col" + i, "Column " + i, GridLayoutCellType.Placeholder); } result.AddRow().AddCell(12, "Bottom", "Bottom", GridLayoutCellType.Placeholder); return result; }