Mercurial > pub > bltoolkit
comparison Source/EditableObjects/EditableListChangedEventArgs.cs @ 0:f990fcb411a9
Копия текущей версии из github
| author | cin |
|---|---|
| date | Thu, 27 Mar 2014 21:46:09 +0400 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| -1:000000000000 | 0:f990fcb411a9 |
|---|---|
| 1 using System.ComponentModel; | |
| 2 | |
| 3 namespace BLToolkit.EditableObjects | |
| 4 { | |
| 5 public class EditableListChangedEventArgs : ListChangedEventArgs | |
| 6 { | |
| 7 public EditableListChangedEventArgs(int newIndex, int oldIndex) | |
| 8 : base(ListChangedType.ItemMoved, newIndex, oldIndex) | |
| 9 { | |
| 10 } | |
| 11 | |
| 12 public EditableListChangedEventArgs(ListChangedType listChangedType, int index) | |
| 13 : base(listChangedType, index) | |
| 14 { | |
| 15 } | |
| 16 | |
| 17 public EditableListChangedEventArgs(ListChangedType listChangedType) | |
| 18 : base(listChangedType, -1) | |
| 19 { | |
| 20 } | |
| 21 | |
| 22 public EditableListChangedEventArgs(int index, PropertyDescriptor propDesc) | |
| 23 : base(ListChangedType.ItemChanged, index, propDesc) | |
| 24 { | |
| 25 } | |
| 26 } | |
| 27 } |
