示例#1
0
 public IRleCollection <T> GetRange(int startIndex, int endIndex)
 {
     return(innerCollection.GetRange(startIndex, endIndex));
 }
示例#2
0
 protected override void RedoCore()
 {
     savedRange = collection.GetRange(index, index + count - 1);
     collection.Remove(index, count);
 }
示例#3
0
 protected override void RedoCore()
 {
     savedRange = collection.GetRange(collection.Length - newRange.Length, collection.Length - 1);
     collection.Insert(index, newRange, valueConverter);
 }
示例#4
0
 protected override void RedoCore()
 {
     savedRange = collection.GetRange(collection.Length - count, collection.Length - 1);
     collection.Insert(index, count, newValue);
 }
示例#5
0
 protected override void RedoCore()
 {
     oldRange = collection.GetRange(startIndex, startIndex + newRange.Length - 1);
     collection.SetRange(startIndex, newRange, valueConverter);
 }
示例#6
0
 protected override void RedoCore()
 {
     oldRange = collection.GetRange(startIndex, endIndex);
     collection.SetRange(startIndex, endIndex, newValue);
 }