Exemplo n.º 1
0
        /// <summary>
        /// Fires the <see cref="ProjectRenamed" /> event.
        /// </summary>
        /// <param name="e">Indicates which project was renamed, and the old and the new name of the project.</param>
        protected virtual void OnRenameProject(ProjectRenameEventArgs e)
        {
            if (ProjectRenamed != null)
            {
                ProjectRenamed(this, e);
            }

            OnProjectChanged();
        }
Exemplo n.º 2
0
    /// <summary>
    /// Fires the <see cref="ProjectRenamed" /> event.
    /// </summary>
    /// <param name="e">Indicates which project was renamed, and the old and the new name of the project.</param>
    protected virtual void OnRenameProject(ProjectRenameEventArgs e)
    {
      if (ProjectRenamed != null)
      {
        ProjectRenamed(this, e);
      }

      OnProjectChanged();
    }