public TabLayoutCell Cell(string format) { var layoutCell = new TabLayoutCell(format); cells.Add(layoutCell); return(layoutCell); }
public TabLayoutCell Cell(int cell) { var layoutCell = new TabLayoutCell(cell); cells.Add(layoutCell); return(layoutCell); }
public void SetDataFormatOnConstruction() { var cell = new TabLayoutCell("{0} - {1}"); Assert.Equal("{0} - {1}", cell.Data); }
public TabLayoutCellShould() { Cell = new TabLayoutCell(1); }
public void SetDataId() { var cell = new TabLayoutCell(1); Assert.Equal(1, cell.Data); }
public TabLayoutCell Cell(int cell) { var layoutCell = new TabLayoutCell(cell); cells.Add(layoutCell); return layoutCell; }
public TabLayoutCell Cell(string format) { var layoutCell = new TabLayoutCell(format); cells.Add(layoutCell); return layoutCell; }