This class is used for the events raised by a HierarchyNode object.
Inheritance: System.EventArgs
Ejemplo n.º 1
0
        protected virtual void OnCustomToolNamespaceChanged(HierarchyNodeEventArgs e)
        {
            var t = CustomToolNamespaceChanged;

            if (t != null)
            {
                t(this, e);
            }
        }
 /// <summary>
 /// Event handler for the Custom tool namespce property changes
 /// </summary>
 /// <param name="sender">FileNode sending it</param>
 /// <param name="e">Node event args</param>
 internal virtual void OnCustomToolNameSpaceChanged(object sender, HierarchyNodeEventArgs e)
 {
     this.RunGenerator();
 }
Ejemplo n.º 3
0
 /// <summary>
 /// Event handler for the Custom tool namespce property changes
 /// </summary>
 /// <param name="sender">FileNode sending it</param>
 /// <param name="e">Node event args</param>
 internal virtual void OnCustomToolNameSpaceChanged(object sender, HierarchyNodeEventArgs e)
 {
     this.RunGenerator();
 }
Ejemplo n.º 4
0
 void result_OnChildRemoved(object sender, HierarchyNodeEventArgs e)
 {
     compilerManager.RemoveReference((ReferenceNode)e.Child);
 }
 protected virtual void OnCustomToolNamespaceChanged(HierarchyNodeEventArgs e)
 {
     var t = CustomToolNamespaceChanged;
     if (t != null)
         t(this, e);
 }
Ejemplo n.º 6
0
 /// <summary>
 /// Event handler for the Custom tool property changes
 /// </summary>
 /// <param name="sender">FileNode sending it</param>
 /// <param name="e">Node event args</param>
 public virtual void OnCustomToolChanged(object sender, HierarchyNodeEventArgs e)
 {
     this.RunGenerator();
 }