Changeset 11594 for branches/Breadcrumbs/HeuristicLab.Problems.DataAnalysis.Symbolic.Regression.Views/3.4/SymbolicRegressionSolutionView.Designer.cs
- Timestamp:
- 11/27/14 11:23:37 (10 years ago)
- Location:
- branches/Breadcrumbs
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/Breadcrumbs
- 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/Breadcrumbs/HeuristicLab.Problems.DataAnalysis.Symbolic.Regression.Views
- Property svn:mergeinfo changed
-
branches/Breadcrumbs/HeuristicLab.Problems.DataAnalysis.Symbolic.Regression.Views/3.4/SymbolicRegressionSolutionView.Designer.cs
r9973 r11594 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 3Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2014 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 45 45 /// </summary> 46 46 private void InitializeComponent() { 47 this.exportButton = new System.Windows.Forms.Button(); 48 this.exportFileDialog = new System.Windows.Forms.SaveFileDialog(); 47 49 this.btnSimplify = new System.Windows.Forms.Button(); 50 this.transformModelButton = new System.Windows.Forms.Button(); 48 51 ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).BeginInit(); 49 52 this.splitContainer.Panel1.SuspendLayout(); … … 54 57 this.SuspendLayout(); 55 58 // 56 // splitContainer59 // flowLayoutPanel 57 60 // 58 // 59 // splitContainer.Panel1 60 // 61 this.splitContainer.Panel1.Controls.Add(this.btnSimplify); 62 // 63 // addButton 64 // 65 this.toolTip.SetToolTip(this.addButton, "Add"); 66 // 67 // removeButton 68 // 69 this.toolTip.SetToolTip(this.removeButton, "Remove"); 61 this.flowLayoutPanel.Controls.Add(this.btnSimplify); 62 this.flowLayoutPanel.Controls.Add(this.exportButton); 63 this.flowLayoutPanel.Controls.Add(this.transformModelButton); 70 64 // 71 65 // btnSimplify 72 66 // 73 this.btnSimplify.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); 74 this.btnSimplify.Location = new System.Drawing.Point(172, 4); 67 this.btnSimplify.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom))); 68 this.btnSimplify.Image = HeuristicLab.Common.Resources.VSImageLibrary.FormulaEvaluator; 69 this.btnSimplify.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; 75 70 this.btnSimplify.Name = "btnSimplify"; 76 this.btnSimplify.Size = new System.Drawing.Size(75, 23); 77 this.btnSimplify.TabIndex = 6; 78 this.btnSimplify.Text = "Simplify"; 71 this.btnSimplify.TabIndex = 7; 72 this.btnSimplify.Size = new System.Drawing.Size(105, 24); 73 this.btnSimplify.Text = "Simplify Model"; 74 this.btnSimplify.TextAlign = System.Drawing.ContentAlignment.MiddleRight; 79 75 this.btnSimplify.UseVisualStyleBackColor = true; 80 76 this.btnSimplify.Click += new System.EventHandler(this.btn_SimplifyModel_Click); 77 this.toolTip.SetToolTip(this.btnSimplify, "Simplify solution"); 78 // 79 // exportButton 80 // 81 this.exportButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom))); 82 this.exportButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Statistics; 83 this.exportButton.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; 84 this.exportButton.Name = "exportButton"; 85 this.exportButton.Size = new System.Drawing.Size(105, 24); 86 this.exportButton.TabIndex = 8; 87 this.exportButton.Text = "Export to Excel "; 88 this.exportButton.TextAlign = System.Drawing.ContentAlignment.MiddleRight; 89 this.exportButton.UseVisualStyleBackColor = true; 90 this.exportButton.Click += new System.EventHandler(this.exportButton_Click); 91 this.toolTip.SetToolTip(this.exportButton, "Exports the symbolic regression solution to Excel."); 92 // 93 // transformModelButton 94 // 95 this.transformModelButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom))); 96 this.transformModelButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Event; 97 this.transformModelButton.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; 98 this.transformModelButton.Name = "transformModelButton"; 99 this.transformModelButton.Size = new System.Drawing.Size(135, 24); 100 this.transformModelButton.TabIndex = 9; 101 this.transformModelButton.Text = "Backtransform Model"; 102 this.transformModelButton.TextAlign = System.Drawing.ContentAlignment.MiddleRight; 103 this.transformModelButton.UseVisualStyleBackColor = true; 104 this.transformModelButton.Click += new System.EventHandler(this.transformModelButton_Click); 105 this.toolTip.SetToolTip(this.transformModelButton, "Backtransform model based on the stored transformations."); 81 106 // 82 107 // SymbolicRegressionSolutionView … … 95 120 96 121 #endregion 97 private System.Windows.Forms.Button btnSimplify; 122 protected System.Windows.Forms.SaveFileDialog exportFileDialog; 123 protected System.Windows.Forms.Button exportButton; 124 protected System.Windows.Forms.Button btnSimplify; 125 protected System.Windows.Forms.Button transformModelButton; 98 126 } 99 127 }
Note: See TracChangeset
for help on using the changeset viewer.