Esempio n. 1
0
        protected virtual void OnProjectPropertyChanged(ProjectPropertyChangedArgs e)
        {
            var t = ProjectPropertyChanged;

            if (t != null)
            {
                t(this, e);
            }
        }
Esempio n. 2
0
 private void OnProjectPropertyChanged(object sender, ProjectPropertyChangedArgs args)
 {
     // In theory here we should decide if we have to invalidate the group according with the kind of property
     // that is changed.
     InvalidateGroup();
 }
Esempio n. 3
0
 protected virtual void Project_OnProjectPropertyChanged(object sender, ProjectPropertyChangedArgs e)
 {
 }
Esempio n. 4
0
 private void OnProjectPropertyChanged(object sender, ProjectPropertyChangedArgs args)
 {
     // In theory here we should decide if we have to invalidate the group according with the kind of property
     // that is changed.
     InvalidateGroup();
 }
 protected virtual void OnProjectPropertyChanged(ProjectPropertyChangedArgs e)
 {
     var t = ProjectPropertyChanged;
     if (t != null)
         t(this, e);
 }
Esempio n. 6
0
 internal virtual void Project_OnProjectPropertyChanged(object sender, ProjectPropertyChangedArgs e)
 {
 }
Esempio n. 7
0
 protected virtual void Project_OnProjectPropertyChanged(object sender, ProjectPropertyChangedArgs e)
 {
     ; // handled in subclasses
 }