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

              return true;
        }