예제 #1
0
 /// <summary>
 /// Возвращает значение, показывающее были ли изменения в данном элементе управления
 /// </summary>
 public bool GetChangeStatus()
 {
     if (_componentLifeLimit != null && _componentLifeLimit.GetChangeStatus(_currentComponent))
     {
         return(true);
     }
     return(existPerformances.Any(item => item.GetChangeStatus()) || addedPerformances.Any(item => item.GetChangeStatus()));
 }