Ejemplo n.º 1
0
 public void SetElement(int idx, GroupingElement elem)
 {
     elements[idx] = elem;
     ElemUpdateInvoke();
 }
Ejemplo n.º 2
0
 public void AddElement(GroupingElement elem)
 {
     this.elements.Add(elem);
 }
Ejemplo n.º 3
0
 public int IndexOfElement(GroupingElement elem)
 {
     return(elements.IndexOf(elem));
 }
Ejemplo n.º 4
0
 public void SetElement(int idx, GroupingElement elem)
 {
     elements[idx] = elem;
     ElemUpdateInvoke();
 }
Ejemplo n.º 5
0
 public int IndexOfElement(GroupingElement elem)
 {
     return elements.IndexOf(elem);
 }
Ejemplo n.º 6
0
 public void AddElement(GroupingElement elem)
 {
     this.elements.Add(elem);
 }
Ejemplo n.º 7
0
 public void SetElementDestination(GroupingElement.DestData dd)
 {
     dd.Destination = this.DestPath;
     this.destPathUpdated += new Action<string>((s) => dd.Destination = s);
     Core.InvokeDistrubited(LinkedKey);
 }