Changeset 4119 for branches/3.3-HiveMigration/sources/HeuristicLab.Hive/HeuristicLab.Hive.Experiment.Views/3.3
- Timestamp:
- 07/28/10 17:48:10 (14 years ago)
- Location:
- branches/3.3-HiveMigration/sources/HeuristicLab.Hive/HeuristicLab.Hive.Experiment.Views/3.3
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3.3-HiveMigration/sources/HeuristicLab.Hive/HeuristicLab.Hive.Experiment.Views/3.3/HeuristicLab.Hive.Experiment.Views-3.3.csproj
r4116 r4119 39 39 <PlatformTarget>AnyCPU</PlatformTarget> 40 40 <OutputPath>bin\Debug\</OutputPath> 41 <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet> 41 42 </PropertyGroup> 42 43 <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'"> … … 46 47 <PropertyGroup> 47 48 <StartupObject /> 49 </PropertyGroup> 50 <PropertyGroup> 51 <SignAssembly>true</SignAssembly> 52 </PropertyGroup> 53 <PropertyGroup> 54 <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile> 48 55 </PropertyGroup> 49 56 <ItemGroup> … … 109 116 </ItemGroup> 110 117 <ItemGroup> 118 <None Include="HeuristicLab.snk" /> 111 119 <None Include="Properties\AssemblyInfo.frame" /> 112 120 </ItemGroup> -
branches/3.3-HiveMigration/sources/HeuristicLab.Hive/HeuristicLab.Hive.Experiment.Views/3.3/HiveExperimentView.cs
r4116 r4119 75 75 base.OnContentChanged(); 76 76 if (Content == null) { 77 executionTimeTextBox.Text = "-";77 executionTimeTextBox.Text = string.Empty; 78 78 } else { 79 79 executionTimeTextBox.Text = Content.ExecutionTime.ToString(); 80 resourceIdsTextBox.Text = Content.ResourceIds; 81 serverUrlTextBox.Text = Content.ServerUrl; 82 experimentNamedItemView.Content = Content.Experiment; 80 83 } 81 84 } … … 84 87 base.SetEnabledStateOfControls(); 85 88 executionTimeTextBox.Enabled = Content != null; 89 if (Content != null) { 90 openExperimentButton.Enabled = Content.Experiment != null; 91 experimentNamedItemView.Locked = Content.Experiment == null; 92 } 86 93 SetEnabledStateOfExecutableButtons(); 87 94 } … … 94 101 private void Content_ExperimentChanged(object sender, EventArgs e) { 95 102 experimentNamedItemView.Content = Content.Experiment; 103 if (Content.Experiment != null) { 104 Content.Prepare(); 105 } 96 106 SetEnabledStateOfExecutableButtons(); 97 107 } … … 179 189 stopButton.Enabled = (Content.ExecutionState == ExecutionState.Started) || (Content.ExecutionState == ExecutionState.Paused); 180 190 resetButton.Enabled = Content.ExecutionState != ExecutionState.Started; 181 openExperimentButton.Enabled = Content.Experiment != null;182 experimentNamedItemView.Locked = Content.Experiment == null;183 191 } 184 192 } … … 200 208 201 209 private void resourceIdsTextBox_Validated(object sender, EventArgs e) { 202 Content.ResourceIds = resourceIds Label.Text;210 Content.ResourceIds = resourceIdsTextBox.Text; 203 211 } 204 212 -
branches/3.3-HiveMigration/sources/HeuristicLab.Hive/HeuristicLab.Hive.Experiment.Views/3.3/Properties/AssemblyInfo.cs
r4116 r4119 55 55 // You can specify all the values or you can default the Revision and Build Numbers 56 56 // by using the '*' as shown below: 57 [assembly: AssemblyVersion("3.3.0.411 1")]58 [assembly: AssemblyFileVersion("3.3.0.411 1")]59 [assembly: AssemblyBuildDate("2010/07/2 7 18:32:02")]57 [assembly: AssemblyVersion("3.3.0.4116")] 58 [assembly: AssemblyFileVersion("3.3.0.4116")] 59 [assembly: AssemblyBuildDate("2010/07/28 17:42:56")]
Note: See TracChangeset
for help on using the changeset viewer.