/// <summary>
 /// Called when the EditApplicationCommands verb is activated.
 /// </summary>
 /// <param name="sender">The source of the event.</param>
 /// <param name="e">An <see cref="EventArgs"/> that contains no event data.</param>
 private void onVerbEditApplicationCommands(object sender, EventArgs e)
 {
     NuGenEditorServiceContext.EditValue(this, this.Component, "ApplicationCommands");
 }
 // Event handling method for the designer verb
 /// <summary>
 /// Called when the EditContextMenus verb is activated.
 /// </summary>
 /// <param name="sender">The source of the event.</param>
 /// <param name="e">An <see cref="EventArgs"/> that contains no event data.</param>
 private void onVerbEditContextMenus(object sender, EventArgs e)
 {
     NuGenEditorServiceContext.EditValue(this, this.Component, "ContextMenus");
 }
 /// <summary>
 /// Creates a method signature in the source code file for the default event
 /// on the component and navigates the user's cursor to that location.
 /// This method is invoked when the associated component is double-clicked.
 /// </summary>
 public override void DoDefaultAction()
 {
     NuGenEditorServiceContext.EditValue(this, this.Component, "ApplicationCommands");
 }