Beispiel #1
0
 public ArchestrATreeNode(ArchestrATreeNodeType type, String[] Graphics)
     : this(type) {
     if (Graphics != null)
     {
         try {
             _graphics.AddRange(Graphics);
         } catch (Exception ex) {
         }
     }
 }
Beispiel #2
0
 public ArchestrATreeNode(ArchestrATreeNodeType type, String[] Graphics, String Text, Int32 ImageIndex)
     : base(Text, ImageIndex, ImageIndex)
 {
     _atnType = type;
     if (Graphics != null)
     {
         try {
             _graphics.AddRange(Graphics);
         } catch (Exception ex) {
         }
     }
 }
 public SelectionEventArgs(String SelectedNode, ArchestrATreeNodeType SelectedType, ArchestrATreeNode ArchestrATreeNode)
 {
     this._selectedNode     = SelectedNode;
     this._selectedNodeType = SelectedType;
     this._tn = ArchestrATreeNode;
 }
Beispiel #4
0
 public ArchestrATreeNode(ArchestrATreeNodeType type, String Text, Int32 ImageIndex)
     : base(Text, ImageIndex, ImageIndex)
 {
     _atnType = type;
 }
Beispiel #5
0
 public ArchestrATreeNode(ArchestrATreeNodeType type)
     : base()
 {
     _atnType = type;
 }