public override bool DeInitPluginModule() { //Deregister the event handlers the panel uses. _DragAndDropPanel.DeregisterEventHandler(); _DragAndDropPanel.Close(); _DragAndDropPanel.Dispose(); _DragAndDropPanel = null; return true; }
public override bool InitPluginModule() { _DragAndDropPanel = new DragAndDropPanel(EditorManager.ApplicationLayout.DockingArea); _DragAndDropPanel.ShowDockable(); return true; }