private void UpdateDependencies() { if (DependencyPresenter != null) { DependencyPresenter.Invalidate(); } }
public void InvalidateItemPositions() { Debug.WriteLine("GanttPanel.InvalidateItemPositions()"); if (RowPresenter != null) { RowPresenter.Children.OfType <GanttRow>().ToList().ForEach(r => { //r.ItemsPresenter.InvalidateArrange(); r.ItemsPresenter.InvalidateMeasure(); } ); } if (ColumnPresenter != null) { ColumnPresenter.Invalidate(); } if (DependencyPresenter != null) { DependencyPresenter.Invalidate(); } }