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

            if (t != null)
            {
                t(this, e);
            }
        }
Ejemplo 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();
 }
Ejemplo n.º 3
0
 protected virtual void Project_OnProjectPropertyChanged(object sender, ProjectPropertyChangedArgs e)
 {
 }
Ejemplo 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);
 }
Ejemplo n.º 6
0
 internal virtual void Project_OnProjectPropertyChanged(object sender, ProjectPropertyChangedArgs e)
 {
 }
Ejemplo n.º 7
0
 protected virtual void Project_OnProjectPropertyChanged(object sender, ProjectPropertyChangedArgs e)
 {
     ; // handled in subclasses
 }