Changeset 11009 for branches/DataPreprocessing/HeuristicLab.Problems.DataAnalysis.Symbolic.TimeSeriesPrognosis.Views
- Timestamp:
- 06/12/14 13:26:18 (10 years ago)
- Location:
- branches/DataPreprocessing
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing
- Property svn:ignore
-
old new 8 8 FxCopResults.txt 9 9 Google.ProtocolBuffers-0.9.1.dll 10 Google.ProtocolBuffers-2.4.1.473.dll 10 11 HeuristicLab 3.3.5.1.ReSharper.user 11 12 HeuristicLab 3.3.6.0.ReSharper.user 12 13 HeuristicLab.4.5.resharper.user 13 14 HeuristicLab.ExtLibs.6.0.ReSharper.user 15 HeuristicLab.Scripting.Development 14 16 HeuristicLab.resharper.user 15 17 ProtoGen.exe … … 17 19 _ReSharper.HeuristicLab 18 20 _ReSharper.HeuristicLab 3.3 21 _ReSharper.HeuristicLab 3.3 Tests 19 22 _ReSharper.HeuristicLab.ExtLibs 20 23 bin 21 24 protoc.exe 22 _ReSharper.HeuristicLab 3.3 Tests23 Google.ProtocolBuffers-2.4.1.473.dll
-
- Property svn:mergeinfo changed
- Property svn:ignore
-
branches/DataPreprocessing/HeuristicLab.Problems.DataAnalysis.Symbolic.TimeSeriesPrognosis.Views/3.4/HeuristicLab.Problems.DataAnalysis.Symbolic.TimeSeriesPrognosis.Views-3.4.csproj
r8799 r11009 151 151 <Private>False</Private> 152 152 </ProjectReference> 153 <ProjectReference Include="..\..\HeuristicLab.Common.Resources\3.3\HeuristicLab.Common.Resources-3.3.csproj"> 154 <Project>{0e27a536-1c4a-4624-a65e-dc4f4f23e3e1}</Project> 155 <Name>HeuristicLab.Common.Resources-3.3</Name> 156 <Private>False</Private> 157 </ProjectReference> 153 158 <ProjectReference Include="..\..\HeuristicLab.Common\3.3\HeuristicLab.Common-3.3.csproj"> 154 159 <Project>{A9AD58B9-3EF9-4CC1-97E5-8D909039FF5C}</Project> -
branches/DataPreprocessing/HeuristicLab.Problems.DataAnalysis.Symbolic.TimeSeriesPrognosis.Views/3.4/Plugin.cs.frame
r10037 r11009 29 29 [PluginFile("HeuristicLab.Problems.DataAnalysis.Symbolic.TimeSeriesPrognosis.Views-3.4.dll", PluginFileType.Assembly)] 30 30 [PluginDependency("HeuristicLab.Common", "3.3")] 31 [PluginDependency("HeuristicLab.Common.Resources", "3.3")] 31 32 [PluginDependency("HeuristicLab.Core", "3.3")] 32 33 [PluginDependency("HeuristicLab.Core.Views", "3.3")] -
branches/DataPreprocessing/HeuristicLab.Problems.DataAnalysis.Symbolic.TimeSeriesPrognosis.Views/3.4/SymbolicTimeSeriesPrognosisSolutionView.Designer.cs
r9973 r11009 54 54 this.SuspendLayout(); 55 55 // 56 // exportButton56 // flowLayoutPanel 57 57 // 58 this.exportButton.Visible = false; 59 // 60 // splitContainer 61 // 62 // 63 // splitContainer.Panel1 64 // 65 this.splitContainer.Panel1.Controls.Add(this.btnSimplify); 66 // 67 // addButton 68 // 69 this.toolTip.SetToolTip(this.addButton, "Add"); 70 // 71 // removeButton 72 // 73 this.toolTip.SetToolTip(this.removeButton, "Remove"); 58 this.flowLayoutPanel.Controls.Add(this.btnSimplify); 74 59 // 75 60 // btnSimplify 76 61 // 77 this.btnSimplify.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); 78 this.btnSimplify.Location = new System.Drawing.Point(172, 4); 62 this.btnSimplify.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom))); 63 this.btnSimplify.Image = HeuristicLab.Common.Resources.VSImageLibrary.FormulaEvaluator; 64 this.btnSimplify.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; 79 65 this.btnSimplify.Name = "btnSimplify"; 80 this.btnSimplify.Size = new System.Drawing.Size(75, 23); 81 this.btnSimplify.TabIndex = 6; 82 this.btnSimplify.Text = "Simplify"; 66 this.btnSimplify.TabIndex = 7; 67 this.btnSimplify.Size = new System.Drawing.Size(105, 24); 68 this.btnSimplify.Text = "Simplify Model"; 69 this.btnSimplify.TextAlign = System.Drawing.ContentAlignment.MiddleRight; 83 70 this.btnSimplify.UseVisualStyleBackColor = true; 84 71 this.btnSimplify.Click += new System.EventHandler(this.btn_SimplifyModel_Click); 72 this.toolTip.SetToolTip(this.btnSimplify, "Simplify solution"); 85 73 // 86 74 // SymbolicTimeSeriesPrognosisSolutionView -
branches/DataPreprocessing/HeuristicLab.Problems.DataAnalysis.Symbolic.TimeSeriesPrognosis.Views/3.4/SymbolicTimeSeriesPrognosisSolutionView.cs
r9462 r11009 38 38 } 39 39 40 protected override void SetEnabledStateOfControls() { 41 base.SetEnabledStateOfControls(); 42 btnSimplify.Enabled = Content != null && !Locked; 43 } 44 40 45 private void btn_SimplifyModel_Click(object sender, EventArgs e) { 41 46 InteractiveSymbolicTimeSeriesPrognosisSolutionSimplifierView view = new InteractiveSymbolicTimeSeriesPrognosisSolutionSimplifierView();
Note: See TracChangeset
for help on using the changeset viewer.