Example #1
0
 public virtual object GetFormattedValue(UIElementDataListRowEntity row, UIElementDataListRowCellEntity cell)
 {
     return(cell.Value);
 }
        /// <summary>
        /// 允许shell中重写,以返回Ex结尾对象
        /// </summary>
        /// <returns></returns>
        public virtual UIElementDataListRowEntity NewRow()
        {
            UIElementDataListRowEntity row = new UIElementDataListRowEntity(this);

            return(row);
        }
 public UIElementDataListRowCellEntity(UIElementDataListRowEntity owningRow, UIElementDataListColumnEntityAbstract owningColumn)
 {
     OwningRow    = owningRow;
     OwningColumn = owningColumn;
 }
Example #4
0
 public virtual void Remove(UIElementDataListRowEntity value)
 {
     List.Remove(value);
 }
Example #5
0
 public void Insert(int index, UIElementDataListRowEntity value)
 {
     List.Insert(index, value);
 }
Example #6
0
 public int IndexOf(UIElementDataListRowEntity value)
 {
     return(List.IndexOf(value));
 }
Example #7
0
 public bool Contains(UIElementDataListRowEntity value)
 {
     return(List.Contains(value));
 }
Example #8
0
 public virtual int Add(UIElementDataListRowEntity value)
 {
     return(List.Add(value));
 }