Exemplo n.º 1
0
        void HandleClonePanelClosed(INodeInfo nodeInfo, string Name, string Category, string Version, string path)
        {
            if (nodeInfo != null)
            {
                NodeBrowserHost.CloneNode(nodeInfo, path, Name, Category, Version);
            }

            HandleOnPanelChange(NodeBrowserPage.NodeTags, null);
        }
Exemplo n.º 2
0
 void HandleCreateNodeFromString(string text)
 {
     if (FInitialText != text)
     {
         NodeBrowserHost.CreateComment(text);
     }
     else
     {
         NodeBrowserHost.CreateNode(null);
     }
 }
Exemplo n.º 3
0
 void HandleCreateNode(INodeInfo nodeInfo)
 {
     NodeBrowserHost.CreateNode(nodeInfo);
 }