/// <summary> /// Add description graph view /// </summary> /// <param name="sender">The sender</param> /// <param name="e">The e</param> private void AddDescription_Click(object sender, RoutedEventArgs e) { if (this.displayConditions) { GraphControl.ChangeDisplayConditions(!this.displayConditions); this.displayConditions = false; } else { GraphControl.ChangeDisplayConditions(!this.displayConditions); this.displayConditions = true; } }