/// <summary>
 /// Shows the tool window when the menu item is clicked.
 /// </summary>
 /// <param name="sender">The event sender.</param>
 /// <param name="e">The event args.</param>
 private void ShowToolWindow(object sender, EventArgs e)
 {
     QuickMethodToolWindow window = new QuickMethodToolWindow();
     window.WindowStartupLocation = System.Windows.WindowStartupLocation.CenterScreen;
     window.ShowModal();
 }
 /// <summary>
 /// Shows the tool window when the menu item is clicked.
 /// </summary>
 /// <param name="sender">The event sender.</param>
 /// <param name="e">The event args.</param>
 private void ShowToolWindow(object sender, EventArgs e)
 {
     QuickMethodToolWindow window = new QuickMethodToolWindow(true,
             Data.SymbolData.ESymbolType.Namespace |
             Data.SymbolData.ESymbolType.Class |
             Data.SymbolData.ESymbolType.Interface |
             Data.SymbolData.ESymbolType.Macro |
             Data.SymbolData.ESymbolType.Enumerator |
             Data.SymbolData.ESymbolType.Enumeration |
             Data.SymbolData.ESymbolType.Method |
             Data.SymbolData.ESymbolType.MethodPrototype |
             Data.SymbolData.ESymbolType.Field |
             Data.SymbolData.ESymbolType.Property);
     window.WindowStartupLocation = System.Windows.WindowStartupLocation.CenterScreen;
     window.ShowModal();
 }
 /// <summary>
 /// Shows the tool window when the menu item is clicked.
 /// </summary>
 /// <param name="sender">The event sender.</param>
 /// <param name="e">The event args.</param>
 private void ShowToolWindow(object sender, EventArgs e)
 {
     QuickMethodToolWindow window = new QuickMethodToolWindow(false,
             Data.SymbolData.ESymbolType.Method |
             Data.SymbolData.ESymbolType.MethodPrototype);
     window.WindowStartupLocation = System.Windows.WindowStartupLocation.CenterScreen;
     window.ShowModal();
 }