Exemplo n.º 1
0
        public override bool InitPluginModule()
        {
            _DragAndDropPanel = new DragAndDropPanel(EditorManager.ApplicationLayout.DockingArea);
            _DragAndDropPanel.ShowDockable();

            return(true);
        }
Exemplo n.º 2
0
 public override bool DeInitPluginModule()
 {
     //Deregister the event handlers the panel uses.
     _DragAndDropPanel.DeregisterEventHandler();
     _DragAndDropPanel.Close();
     _DragAndDropPanel.Dispose();
     _DragAndDropPanel = null;
     return(true);
 }