- Timestamp:
- 03/29/11 00:31:42 (14 years ago)
- Location:
- branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.Views/3.4
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.Views/3.4/Administration/ResourcesView.cs
r5711 r5852 84 84 tn.Tag = g; 85 85 tn.Text = g.Name; 86 foreach ( Slave sin Content.Where(s => s.ParentResourceId != null && s.ParentResourceId == g.Id)) {87 var stn = new TreeNode( s.Name);86 foreach (Resource r in Content.Where(s => s.ParentResourceId != null && s.ParentResourceId == g.Id)) { 87 var stn = new TreeNode(r.Name); 88 88 stn.ImageIndex = 0; 89 89 stn.SelectedImageIndex = stn.ImageIndex; 90 stn.Tag = s;90 stn.Tag = r; 91 91 tn.Nodes.Add(stn); 92 92 } -
branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.Views/3.4/ExperimentManager/HiveExperimentView.Designer.cs
r5779 r5852 83 83 this.nameTextBox.Size = new System.Drawing.Size(727, 20); 84 84 // 85 // descriptionTextBox86 //87 this.descriptionTextBox.Size = new System.Drawing.Size(727, 20);88 //89 85 // tabControl 90 86 // … … 374 370 this.Size = new System.Drawing.Size(799, 628); 375 371 this.Controls.SetChildIndex(this.nameTextBox, 0); 376 this.Controls.SetChildIndex(this.descriptionTextBox, 0);377 372 this.Controls.SetChildIndex(this.reconnectButton, 0); 378 373 this.Controls.SetChildIndex(this.resetButton, 0); … … 388 383 this.Controls.SetChildIndex(this.tabControl, 0); 389 384 this.Controls.SetChildIndex(this.nameLabel, 0); 390 this.Controls.SetChildIndex(this.descriptionLabel, 0);391 385 this.Controls.SetChildIndex(this.downloadExperimentPanel, 0); 392 386 ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit(); -
branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.Views/3.4/ExperimentManager/HiveExperimentView.cs
r5675 r5852 103 103 if (Content != null) { 104 104 this.nameTextBox.ReadOnly = Content.ExecutionState != ExecutionState.Prepared; 105 this.descriptionTextBox.ReadOnly = Content.ExecutionState != ExecutionState.Prepared;106 105 this.resourceNamesTextBox.ReadOnly = Content.ExecutionState != ExecutionState.Prepared; 107 106 this.jobsTreeView.ReadOnly = Content.ExecutionState != ExecutionState.Prepared; … … 135 134 Invoke(new EventHandler(Content_Prepared), sender, e); 136 135 else { 137 nameTextBox.Enabled = descriptionTextBox.Enabled =true;136 nameTextBox.Enabled = true; 138 137 Locked = false; 139 138 SetEnabledStateOfControls(); … … 144 143 Invoke(new EventHandler(Content_Started), sender, e); 145 144 else { 146 nameTextBox.Enabled = descriptionTextBox.Enabled =false;145 nameTextBox.Enabled = false; 147 146 SetEnabledStateOfControls(); 148 147 } … … 152 151 Invoke(new EventHandler(Content_Paused), sender, e); 153 152 else { 154 nameTextBox.Enabled = descriptionTextBox.Enabled =true;153 nameTextBox.Enabled = true; 155 154 SetEnabledStateOfControls(); 156 155 } … … 160 159 Invoke(new EventHandler(Content_Stopped), sender, e); 161 160 else { 162 nameTextBox.Enabled = descriptionTextBox.Enabled =true;161 nameTextBox.Enabled = true; 163 162 Locked = false; 164 163 SetEnabledStateOfControls(); -
branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.Views/3.4/HeuristicLab.Clients.Hive.Views-3.4.csproj
r5718 r5852 72 72 <ItemGroup> 73 73 <Reference Include="Calendar.DayView"> 74 <HintPath> ..\..\..\..\..\..\..\Program Files\HeuristicLab 3.3\Calendar.DayView.dll</HintPath>74 <HintPath>C:\Program Files\HeuristicLab 3.3\Calendar.DayView.dll</HintPath> 75 75 </Reference> 76 76 <Reference Include="HeuristicLab.Collections-3.3"> 77 <HintPath> ..\..\..\..\..\..\..\..\Program Files\HeuristicLab 3.3\HeuristicLab.Collections-3.3.dll</HintPath>77 <HintPath>C:\Program Files\HeuristicLab 3.3\HeuristicLab.Collections-3.3.dll</HintPath> 78 78 </Reference> 79 79 <Reference Include="HeuristicLab.Common-3.3"> 80 <HintPath> ..\..\..\..\..\..\..\..\..\..\..\Program Files\HeuristicLab 3.3\HeuristicLab.Common-3.3.dll</HintPath>80 <HintPath>C:\Program Files\HeuristicLab 3.3\HeuristicLab.Common-3.3.dll</HintPath> 81 81 </Reference> 82 82 <Reference Include="HeuristicLab.Common.Resources-3.3"> 83 <HintPath> ..\..\..\..\..\..\..\..\Program Files\HeuristicLab 3.3\HeuristicLab.Common.Resources-3.3.dll</HintPath>83 <HintPath>C:\Program Files\HeuristicLab 3.3\HeuristicLab.Common.Resources-3.3.dll</HintPath> 84 84 </Reference> 85 85 <Reference Include="HeuristicLab.Core-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL"> 86 <HintPath> ..\..\..\..\..\..\..\Program Files\HeuristicLab 3.3\HeuristicLab.Core-3.3.dll</HintPath>86 <HintPath>C:\Program Files\HeuristicLab 3.3\HeuristicLab.Core-3.3.dll</HintPath> 87 87 </Reference> 88 88 <Reference Include="HeuristicLab.Core.Views-3.3"> 89 <HintPath> ..\..\..\..\..\..\..\..\Program Files\HeuristicLab 3.3\HeuristicLab.Core.Views-3.3.dll</HintPath>89 <HintPath>C:\Program Files\HeuristicLab 3.3\HeuristicLab.Core.Views-3.3.dll</HintPath> 90 90 </Reference> 91 91 <Reference Include="HeuristicLab.Data-3.3"> 92 <HintPath> ..\..\..\..\..\..\..\..\Program Files\HeuristicLab 3.3\HeuristicLab.Data-3.3.dll</HintPath>92 <HintPath>C:\Program Files\HeuristicLab 3.3\HeuristicLab.Data-3.3.dll</HintPath> 93 93 </Reference> 94 94 <Reference Include="HeuristicLab.MainForm-3.3"> 95 <HintPath> ..\..\..\..\..\..\..\..\Program Files\HeuristicLab 3.3\HeuristicLab.MainForm-3.3.dll</HintPath>95 <HintPath>C:\Program Files\HeuristicLab 3.3\HeuristicLab.MainForm-3.3.dll</HintPath> 96 96 </Reference> 97 97 <Reference Include="HeuristicLab.MainForm.WindowsForms-3.3"> 98 <HintPath> ..\..\..\..\..\..\..\..\Program Files\HeuristicLab 3.3\HeuristicLab.MainForm.WindowsForms-3.3.dll</HintPath>98 <HintPath>C:\Program Files\HeuristicLab 3.3\HeuristicLab.MainForm.WindowsForms-3.3.dll</HintPath> 99 99 </Reference> 100 100 <Reference Include="HeuristicLab.Optimization-3.3"> 101 <HintPath> ..\..\..\..\..\..\..\..\Program Files\HeuristicLab 3.3\HeuristicLab.Optimization-3.3.dll</HintPath>101 <HintPath>C:\Program Files\HeuristicLab 3.3\HeuristicLab.Optimization-3.3.dll</HintPath> 102 102 </Reference> 103 103 <Reference Include="HeuristicLab.Optimizer-3.3"> 104 <HintPath> ..\..\..\..\..\..\..\..\Program Files\HeuristicLab 3.3\HeuristicLab.Optimizer-3.3.dll</HintPath>104 <HintPath>C:\Program Files\HeuristicLab 3.3\HeuristicLab.Optimizer-3.3.dll</HintPath> 105 105 </Reference> 106 106 <Reference Include="HeuristicLab.Persistence-3.3"> 107 <HintPath> ..\..\..\..\..\..\..\..\..\..\..\Program Files\HeuristicLab 3.3\HeuristicLab.Persistence-3.3.dll</HintPath>107 <HintPath>C:\Program Files\HeuristicLab 3.3\HeuristicLab.Persistence-3.3.dll</HintPath> 108 108 </Reference> 109 109 <Reference Include="HeuristicLab.PluginInfrastructure-3.3"> 110 <HintPath> ..\..\..\..\..\..\..\..\..\..\..\Program Files\HeuristicLab 3.3\HeuristicLab.PluginInfrastructure-3.3.dll</HintPath>110 <HintPath>C:\Program Files\HeuristicLab 3.3\HeuristicLab.PluginInfrastructure-3.3.dll</HintPath> 111 111 </Reference> 112 112 <Reference Include="HeuristicLab.Visualization.ChartControlsExtensions-3.3"> 113 <HintPath> ..\..\..\..\..\..\..\Program Files\HeuristicLab 3.3\HeuristicLab.Visualization.ChartControlsExtensions-3.3.dll</HintPath>113 <HintPath>C:\Program Files\HeuristicLab 3.3\HeuristicLab.Visualization.ChartControlsExtensions-3.3.dll</HintPath> 114 114 </Reference> 115 115 <Reference Include="System" />
Note: See TracChangeset
for help on using the changeset viewer.