Introduction
When I use the Visual Studio environment, sometimes I have to open 'Windows Explorer' in the folder of the solution to do some tasks as copy files, rename files, launch application by double clicking on the executable.
Because my projects aren't at the root of my hard disk, I lose a lot of time. So, one day, I decided to create the 'Explorer' add-in for Visual Studio 2005.
Install the add-in
To install the 'Explorer' add-in:
- Copy the Explorer.dll, Explorer.AddIn, Explorer.dll.config, log4net.dll files to your "My Documents\Visual Studio 2005\Addins" folder (create it if it does not exist).
- Launch the Visual Studio Environment.
- Select the "Tools\Add-in manager" menu and check the Explorer add-in.
That's all...
Using the Add-In
To open 'Windows Explorer' in a specific folder:
- In the Solution Explorer window, select the solution (or a project or a folder) and right click on it: An 'Explorer' menu appears.
- Select the 'Open folder in Windows Explorer' menu item.
To launch the application as if you double clicked on an '.exe' file in 'Windows Explorer'.
- In the Solution Explorer window, select the project and right click on it: An 'Explorer' menu appears.
- Select the 'Execute application' menu item.
To collapse all nodes of the solution explorer window
- In the Solution Explorer window, select the solution node and right click on it: An 'Explorer' menu appears.
- Select the 'Collapse nodes' menu item.
To search help on the web for the current selected source code
- In the Code window, select source code and right click on it: An 'Explorer' menu appears.
- Select the 'Search help on web' menu item and then the menu item you have defined (Google, Msdn, ...).
Popup Menu Creation
This part is done by the MenuManager.CreatePopupMenu
method.
In Visual Studio, the CommandBar
interface is used to manage menus. So, first, I have to retrieve the CommandBar
object corresponding to the item (of the 'Solution Explorer' window) where I want to add the popup menu. To do it, I use the CommandBars
property of the DTE
interface like this:
private CommandBar GetCommandBar(string commandBarName)
{
return ((CommandBars)application.DTE.CommandBars)[commandBarName];
}
where commandBarName
is the string "Solution", "Project", "Folder", ... Then, I add the CommandBarPopup
corresponding to the 'Explorer' menu to this CommandBar
.
CommandBarPopup menu = GetCommandBar(commandBarName).Controls.Add(
MsoControlType.msoControlPopup,
Missing.Value, Missing.Value, 1, true)
as CommandBarPopup;
Command Creation
This part is done by the MenuManager.AddCommand
method. This method takes a CommandBarPopup
, a CommandBase
, and a position
as parameters, and does the following:
- Add the menu item to the
CommandBarPopup
menu at the specified position
.
- Create a handler to catch the menu item
Click
event.
- Add the
CommandBase
to an internal dictionary to be able to retrieve it in the handler method and call the Perform
method of this CommandBase
.
Menu Item Handlers (details)
When creating the menu items, the MenuItem_Click
is added to the list of the handlers of the Click
event. In this handler, I get the ID of the menu ('OpenFolder' or 'Execute') and retrieve the right CommandBase
object which is contained in the internal dictionary. Then, I call the 'Perform
' method to do the work.
private void MenuItem_Click(object commandBarControl,
ref bool handled, ref bool cancelDefault)
{
CommandBarControl menuItem =
(CommandBarControl)commandBarControl;
if (cmdList.ContainsKey(menuItem.Tag))
{
cmdList[menuItem.Tag].Perform();
}
}
OpenFolderCommand
This command is used to open your file manager in a folder corresponding to the selected item in the 'Solution Explorer' window. To do it, I call the Process.Start
with the following parameters:
Configuration appConfig =
ConfigurationManager.OpenExeConfiguration(
Assembly.GetExecutingAssembly().Location);
System.Diagnostics.Process.Start(GetFileManagerPath(appConfig),
GetParameter(appConfig) + folderPath);
where
GetFileManagerPath()
and GetParameter()
are used to retrieve (from the app.config file) respectively the full path of the file manager to use (by default 'explorer.exe' => 'Windows Explorer') and parameter (by default "/n,/e" => folder view)
- The folder path is found by using the following code :
private string GetFilePath(object o)
{
if (o is EnvDTE.Solution)
{
EnvDTE.Solution solution = (EnvDTE.Solution)o;
_logger.DebugFormat("The selected item is the '{0}'" +
" solution.", solution.FullName);
return solution.FullName;
}
else if (o is EnvDTE.Project)
{
EnvDTE.Project project = (EnvDTE.Project)o;
_logger.DebugFormat("The selected item is the" +
" '{0}'project.", project.FullName);
if (IsWebProject(project))
{
return
project.Properties.Item("FullPath").Value.ToString() +
"\\";
}
else
{
return project.FullName;
}
}
else if (o is EnvDTE.ProjectItem)
{
EnvDTE.ProjectItem projectItem = (EnvDTE.ProjectItem)o;
// A 'ProjectItem' can be a sub project, a folder (or a file)
if (projectItem.SubProject != null)
{
return GetFilePath(projectItem.SubProject);
}
else
{
// we return the full path of the folder (or the file)
_logger.DebugFormat("The selected item is a '{0}' " +
"folder or a file : ", projectItem.get_FileNames(0));
return projectItem.get_FileNames(0);
}
}
else
{
throw new System.NullReferenceException("Full path" +
" not found for the selected item");
}
}
ExecuteCommand
This command is used to launch the application corresponding to the selected project as if you double click on the ".exe" file in the 'Windows Explorer'. To do it, I call the Process.Start
with the name of the assembly as parameter:
System.Diagnostics.Process.Start(assemblyPath);
The assembly path is found by using the following code:
private string GetAssemblyPath(EnvDTE.Project project)
{
Property outputPath =
project.ConfigurationManager.ActiveConfiguration.
Properties.Item("OutputPath");
Property assemblyName = project.Properties.Item("OutputFileName");
return GetFolderPath(project.FullName) + "\\" +
(string)outputPath.Value + (string)assemblyName.Value;
}
CollapseCommand
This command is used to collapse al the nodes of the Solution Explorer window. To do it, I search (recursively) for all child nodes (of the root node) and then loop on to set their 'Expanded
' property to false
using the following code:
private void Collapse(UIHierarchyItem item, ref UIHierarchy solutionExplorer)
{
foreach (UIHierarchyItem innerItem in item.UIHierarchyItems)
{
if (innerItem.UIHierarchyItems.Count > 0)
{
Collapse(innerItem, ref solutionExplorer);
if (innerItem.UIHierarchyItems.Expanded)
{
innerItem.UIHierarchyItems.Expanded = false;
if (innerItem.UIHierarchyItems.Expanded)
{
innerItem.Select(vsUISelectionType.vsUISelectionTypeSelect);
solutionExplorer.DoDefaultAction();
}
}
}
}
}
SearchHelpOnWebCommand
This command is used to search help for the currently selected source code on web sites which are defined in the 'SearchEngineEurls.xml' file. For each SearchEngineUrl
you define in this file, a menu item is added to the 'Search help' menu (see image at the top of this article). As you can see below, by default, the 'Search help' menu will contain two menu items called 'Google' and 'MSDN', but you can define as many entries as you want.
="1.0" ="utf-8"
<SearchEngineUrlsFile
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<SearchEngineUrls>
<SearchEngineUrl Name="Google"
Url="www.google.fr/search?q=" />
<SearchEngineUrl Name="Msdn"
Url="http://search.microsoft.com/search/
results.aspx?view=msdn&q="/>
</SearchEngineUrls>
</SearchEngineUrlsFile>
To do it, I get the current 'Selection' using the following code :
selection = ((TextSelection)Application.DTE.ActiveWindow.Selection)
If no text is selected, I programmatically select the nearest word of the cursor. Then, I concatenate the 'search engine URL' which corresponds to the selected menu item (MSDN or Google or ...) and the selected text => this gives me the complete search URL. Finally, I just open this URL in a new tab in the Visual Studio Environment like this :
Application.DTE.ItemOperations.Navigate(
SearchEngineUrl + HttpUtility.UrlEncode(selectedText),
vsNavigateOptions.vsNavigateOptionsNewWindow);
Debug commands: LogCommandBarsCommand and LogItemPropertiesCommand
To develop this add-in, I had to:
- Find the
CommandBar
s corresponding to the 'Solution', 'Project', 'Folder',... nodes to be able to add commands => LogCommandBarsCommand
logs in the Log4Net file all the CommandBar
names (and the associated commands).
- Find the properties of the selected item to retrieve the full path of the 'Web project', for example =>
LogItemPropertiesCommand
logs in the Log4Net file, the name and value of all properties of the selected item.
Log4Net
Log4Net is a port of the excellent Log4J logging framework (see this website for more explanations). Here, I use it to log in a file all the commands selection by the user. To do it, I configure Log4Net in the app.config file like this:
<log4net>
-->
<root>
<level value="ALL" /> -->
<appender-ref ref="FileAppender" />
</root>
-->
<appender name="FileAppender" type="log4net.Appender.FileAppender">
<param name="File" value="C:\ExplorerAddin.log.txt" />
<param name="AppendToFile" value="true" />
<layout type="log4net.Layout.PatternLayout">
<param name="ConversionPattern" value="%d [%t] %-5p %c - %m%n" />
</layout>
</appender>
</log4net>
Then, I only have to declare a logger:
protected static readonly ILog _logger =
LogManager.GetLogger((MethodBase.GetCurrentMethod().DeclaringType));
and use it:
_logger.DebugFormat("Starting to open " +
"the following folder : '{0}'", folderPath);
History
- 2008/06/16
- Altered
CollapseItems
method
- Updated source and add-in
- 2006/12/28
- Added the '
SearchHelpOnWebSite
' command.
- Refactored the menus creation and the
CommandBase
class.
- 2006/12/10
- The '
Collapse
' command collapses all nodes (and not only the top level nodes)
- 2006/12/06
- Added the '
Collapse
' command.
- Modified the '
OpenFolder
' command to be able to do it on a 'Web project folder' and to open a folder with another file manager than 'Windows Explorer'.
- Added the use of the Log4Net framework to log all actions.
- 2006/11/20
- Modification of the structure of the add-in.
- Added details to the article.
- 2006/10/26
Conclusion
I hope you will enjoy this add-in.