Inheritance: INotifyPropertyChanged
Exemple #1
0
        void section_PropertyChanged(object sender, PropertyChangedEventArgs e)
        {
            GanttNodeSection section = sender as GanttNodeSection;

            if ((e.PropertyName == "StartDate" && section.StartDate <= StartDate) ||
                (e.PropertyName == "EndDate" && section.EndDate >= EndDate)
                )
            {
                this.RaisePropertyChanged(e);
            }
        }
Exemple #2
0
 public GanttNodeSectionEventArgs(GanttNodeSection section)
 {
     Section = section;
 }
 public GanttNodeSectionEventArgs(GanttNodeSection section)
 {
     Section = section;
 }