Exemple #1
0
 public void SelectedTextFindInAllFiles(string selectedText)
 {
     if (!string.IsNullOrEmpty(selectedText))
     {
         MyDockHelper.MakePanelVisible(SolutionTree);
         SolutionTree.SetAndFindInAllFiles(selectedText);
     }
 }
Exemple #2
0
        public void FindFileName(string selectedText)
        {
//            SourceContainerDocument sourceDocument = MainForm.ActiveMdiChild as SourceContainerDocument;
//            if (sourceDocument != null) {
//                string selectedText = sourceDocument.SourceEditorPanel.fastColoredTextBox1.SelectedText;
            MyDockHelper.MakePanelVisible(SolutionTree);
            if (!string.IsNullOrEmpty(selectedText))
            {
                SolutionTree.SetAndFindFile(selectedText);
            }
//            }
        }
 public void ShowFindPanel()
 {
     MyDockHelper.MakePanelVisible(_findInSourcePanel);
 }
 public void ShowObjectExplorerPanel()
 {
     MyDockHelper.MakePanelVisible(_objectExplorerPanel);
 }
 private void ShowSourceEditorPanel()
 {
     MyDockHelper.MakePanelVisible(SourceEditorPanel);
 }