コード例 #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);
 }