private void RaiseSolutionChanged(SolutionManager newSolution, SolutionManager oldSolution)
        {
            if (this.SolutionChanged == null)
            {
                return;
            }

            SolutionChanged.Invoke(this, new SolutionChangedEventArgs(newSolution, oldSolution));
        }
Example #2
0
 public void UpdateSolution(string newVal)
 {
     CurrentSolutionStringyfied = newVal;
     UpdateSolutionInternal(newVal);
     SolutionChanged?.Invoke(this, EventArgs.Empty);
 }
Example #3
0
 private void OnSolutionClosed()
 {
     SolutionChanged?.Invoke(this, EventArgs.Empty);
     ThreadHelper.ThrowIfNotOnUIThread();
     UpdateCommandsUI(this);
 }
Example #4
0
 private void OnSolutionClosed()
 {
     SolutionChanged?.Invoke(this, EventArgs.Empty);
     UpdateCommandsUI(this);
 }