MonoDevelop.Projects.Project.NotifyFilePropertyChangedInProject C# (CSharp) 메소드

NotifyFilePropertyChangedInProject() 개인적인 메소드

private NotifyFilePropertyChangedInProject ( ProjectFile file, string property ) : void
file ProjectFile
property string
리턴 void
		internal void NotifyFilePropertyChangedInProject (ProjectFile file, string property)
		{
			NotifyModified ("Files");
			OnFilePropertyChangedInProject (new ProjectFileEventArgs (this, file, property));
		}

Usage Example

예제 #1
0
 protected virtual void OnChanged(string property)
 {
     if (project != null)
     {
         project.NotifyFilePropertyChangedInProject(this, property);
     }
 }
All Usage Examples Of MonoDevelop.Projects.Project::NotifyFilePropertyChangedInProject