예제 #1
0
 public void SetElement(int idx, GroupingElement elem)
 {
     elements[idx] = elem;
     ElemUpdateInvoke();
 }
예제 #2
0
 public void AddElement(GroupingElement elem)
 {
     this.elements.Add(elem);
 }
예제 #3
0
 public int IndexOfElement(GroupingElement elem)
 {
     return(elements.IndexOf(elem));
 }
예제 #4
0
파일: Operation.cs 프로젝트: karno/Typict
 public void SetElement(int idx, GroupingElement elem)
 {
     elements[idx] = elem;
     ElemUpdateInvoke();
 }
예제 #5
0
파일: Operation.cs 프로젝트: karno/Typict
 public int IndexOfElement(GroupingElement elem)
 {
     return elements.IndexOf(elem);
 }
예제 #6
0
파일: Operation.cs 프로젝트: karno/Typict
 public void AddElement(GroupingElement elem)
 {
     this.elements.Add(elem);
 }
예제 #7
0
파일: Destination.cs 프로젝트: karno/Typict
 public void SetElementDestination(GroupingElement.DestData dd)
 {
     dd.Destination = this.DestPath;
     this.destPathUpdated += new Action<string>((s) => dd.Destination = s);
     Core.InvokeDistrubited(LinkedKey);
 }