Changeset 6004 for branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.Views/3.4/ExperimentManager
- Timestamp:
- 04/11/11 20:57:29 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.Views/3.4/ExperimentManager/StateLogGanttChartListView.cs
r5779 r6004 93 93 DateTime until = to != null ? to.DateTime : upperLimit; 94 94 TimeSpan duration = until - from.DateTime; 95 string tooltip = string.Format("State: {0} \nDuration: {1}\n{2} - {3}", from.State, duration, from.DateTime, until);95 string tooltip = string.Format("State: {0} " + Environment.NewLine + " Duration: {1} " + Environment.NewLine + " {2} - {3}", from.State, duration, from.DateTime, until); 96 96 if (!string.IsNullOrEmpty(from.Exception)) 97 tooltip += "\n"+ from.Exception;97 tooltip += Environment.NewLine + from.Exception; 98 98 ganttChart.AddData(name, from.State.ToString(), from.DateTime, until, tooltip, false); 99 99 } 100 100 101 101 protected override void SetEnabledStateOfControls() { 102 102 base.SetEnabledStateOfControls();
Note: See TracChangeset
for help on using the changeset viewer.