Changeset 10540 for trunk/sources/HeuristicLab.Problems.DataAnalysis.Symbolic.Regression.Views/3.4/SymbolicRegressionSolutionView.Designer.cs
- Timestamp:
- 03/05/14 15:08:11 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Problems.DataAnalysis.Symbolic.Regression.Views/3.4/SymbolicRegressionSolutionView.Designer.cs
r9973 r10540 19 19 */ 20 20 #endregion 21 21 22 22 23 namespace HeuristicLab.Problems.DataAnalysis.Symbolic.Regression.Views { … … 45 46 /// </summary> 46 47 private void InitializeComponent() { 48 this.exportButton = new System.Windows.Forms.Button(); 49 this.exportFileDialog = new System.Windows.Forms.SaveFileDialog(); 47 50 this.btnSimplify = new System.Windows.Forms.Button(); 48 51 ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).BeginInit(); … … 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); 70 63 // 71 64 // btnSimplify 72 65 // 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); 66 this.btnSimplify.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom))); 67 this.btnSimplify.Image = HeuristicLab.Common.Resources.VSImageLibrary.FormulaEvaluator; 68 this.btnSimplify.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; 75 69 this.btnSimplify.Name = "btnSimplify"; 76 this.btnSimplify.Size = new System.Drawing.Size(75, 23); 77 this.btnSimplify.TabIndex = 6; 78 this.btnSimplify.Text = "Simplify"; 70 this.btnSimplify.TabIndex = 7; 71 this.btnSimplify.Size = new System.Drawing.Size(105, 24); 72 this.btnSimplify.Text = "Simplify Model"; 73 this.btnSimplify.TextAlign = System.Drawing.ContentAlignment.MiddleRight; 79 74 this.btnSimplify.UseVisualStyleBackColor = true; 80 75 this.btnSimplify.Click += new System.EventHandler(this.btn_SimplifyModel_Click); 76 this.toolTip.SetToolTip(this.btnSimplify, "Simplify solution"); 77 // 78 // exportButton 79 // 80 this.exportButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom))); 81 this.exportButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Statistics; 82 this.exportButton.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; 83 this.exportButton.Name = "exportButton"; 84 this.exportButton.Size = new System.Drawing.Size(105, 24); 85 this.exportButton.TabIndex = 8; 86 this.exportButton.Text = "Export to Excel "; 87 this.exportButton.TextAlign = System.Drawing.ContentAlignment.MiddleRight; 88 this.exportButton.UseVisualStyleBackColor = true; 89 this.exportButton.Click += new System.EventHandler(this.exportButton_Click); 81 90 // 82 91 // SymbolicRegressionSolutionView … … 95 104 96 105 #endregion 97 private System.Windows.Forms.Button btnSimplify; 106 protected System.Windows.Forms.SaveFileDialog exportFileDialog; 107 protected System.Windows.Forms.Button exportButton; 108 protected System.Windows.Forms.Button btnSimplify; 98 109 } 99 110 }
Note: See TracChangeset
for help on using the changeset viewer.