Changeset 11202 for branches/HiveStatistics/sources/HeuristicLab.Problems.DataAnalysis.Symbolic.Classification.Views/3.4/SymbolicDiscriminantFunctionClassificationSolutionView.Designer.cs
- Timestamp:
- 07/18/14 12:01:13 (10 years ago)
- Location:
- branches/HiveStatistics/sources
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HiveStatistics/sources
- 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/HiveStatistics/sources/HeuristicLab.Problems.DataAnalysis.Symbolic.Classification.Views
- Property svn:mergeinfo changed
-
branches/HiveStatistics/sources/HeuristicLab.Problems.DataAnalysis.Symbolic.Classification.Views/3.4/SymbolicDiscriminantFunctionClassificationSolutionView.Designer.cs
r7259 r11202 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 2Heuristic 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 System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SymbolicDiscriminantFunctionClassificationSolutionView)); 47 this.exportButton = new System.Windows.Forms.Button(); 48 this.exportFileDialog = new System.Windows.Forms.SaveFileDialog(); 48 49 this.btnSimplify = new System.Windows.Forms.Button(); 49 50 ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).BeginInit(); … … 55 56 this.SuspendLayout(); 56 57 // 57 // splitContainer58 // flowLayoutPanel 58 59 // 59 // 60 // splitContainer.Panel1 61 // 62 this.splitContainer.Panel1.Controls.Add(this.btnSimplify); 60 this.flowLayoutPanel.Controls.Add(this.btnSimplify); 61 this.flowLayoutPanel.Controls.Add(this.exportButton); 63 62 // 64 63 // btnSimplify 65 64 // 66 this.btnSimplify.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); 67 this.btnSimplify.Location = new System.Drawing.Point(172, 4); 65 this.btnSimplify.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom))); 66 this.btnSimplify.Image = HeuristicLab.Common.Resources.VSImageLibrary.FormulaEvaluator; 67 this.btnSimplify.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; 68 68 this.btnSimplify.Name = "btnSimplify"; 69 this.btnSimplify.Size = new System.Drawing.Size(75, 23); 70 this.btnSimplify.TabIndex = 6; 71 this.btnSimplify.Text = "Simplify"; 69 this.btnSimplify.Size = new System.Drawing.Size(105, 24); 70 this.btnSimplify.TabIndex = 7; 71 this.btnSimplify.Text = "Simplify Model"; 72 this.btnSimplify.TextAlign = System.Drawing.ContentAlignment.MiddleRight; 72 73 this.btnSimplify.UseVisualStyleBackColor = true; 73 74 this.btnSimplify.Click += new System.EventHandler(this.btn_SimplifyModel_Click); 75 this.toolTip.SetToolTip(this.btnSimplify, "Simplify solution"); 76 // 77 // exportButton 78 // 79 this.exportButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom))); 80 this.exportButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Statistics; 81 this.exportButton.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; 82 this.exportButton.Name = "exportButton"; 83 this.exportButton.Size = new System.Drawing.Size(105, 24); 84 this.exportButton.TabIndex = 8; 85 this.exportButton.Text = "Export to Excel "; 86 this.exportButton.TextAlign = System.Drawing.ContentAlignment.MiddleRight; 87 this.exportButton.UseVisualStyleBackColor = true; 88 this.exportButton.Click += new System.EventHandler(this.exportButton_Click); 89 this.toolTip.SetToolTip(this.exportButton, "Exports the symbolic regression solution to Excel."); 74 90 // 75 91 // SymbolicDiscriminantFunctionClassificationSolutionView … … 88 104 #endregion 89 105 106 protected System.Windows.Forms.SaveFileDialog exportFileDialog; 107 protected System.Windows.Forms.Button exportButton; 90 108 protected System.Windows.Forms.Button btnSimplify; 91 109 }
Note: See TracChangeset
for help on using the changeset viewer.