Beispiel #1
0
        public void AddCell(
            int order,
            object content,
            TableCellType type,
            bool editable,
            string relatedProperty,
            string textForTrueValue,
            string textForFalseValue)
        {
            TableCellViewModel tableCell =
                new TableCellViewModel(order, content, type, editable, relatedProperty, textForTrueValue, textForFalseValue);

            this.cells.Add(tableCell);
        }
        public void AddCell(int order, object content, TableCellType type, bool editable, string relatedProperty)
        {
            TableCellViewModel tableCell = new TableCellViewModel(order, content, type, editable, relatedProperty);

            this.cells.Add(tableCell);
        }