/// <summary>
 /// Invoked when the user selects the "Find All References" command
 /// </summary>
 private void FindAllReferencesClicked(Object sender, EventArgs e)
 {
     try
     {
         FindAllReferences command = new FindAllReferences(true);
         command.Execute();
     }
     catch (Exception ex)
     {
         ErrorManager.ShowError(ex);
     }
 }
Exemple #2
0
 /// <summary>
 /// Invoked when the user selects the "Find All References" command
 /// </summary>
 private void FindAllReferencesClicked(Object sender, EventArgs e)
 {
     try
     {
         FindAllReferences command = new FindAllReferences(true);
         command.Execute();
     }
     catch (Exception ex)
     {
         ErrorManager.ShowError(ex);
     }
 }