Example #1
0
		/// <summary>
		/// Constructor.
		/// </summary>
		/// <param name="project">The project which was changed.</param>
		/// <param name="fileName">The file name of the project.</param>
		/// <param name="eventKind">The kind of the event.</param>
		public ProjectEventArgs(Altaxo.AltaxoDocument project, string fileName, ProjectEventKind eventKind)
		{
			this.Project = project;
			this.NewName = fileName;
			this.ProjectEventKind = eventKind;
		}
Example #2
0
 /// <summary>
 /// Constructor.
 /// </summary>
 /// <param name="project">The project which was changed.</param>
 /// <param name="fileName">The file name of the project.</param>
 /// <param name="eventKind">The kind of the event.</param>
 public ProjectEventArgs(IProject project, string fileName, ProjectEventKind eventKind)
 {
     Project          = project;
     NewName          = fileName;
     ProjectEventKind = eventKind;
 }