Changeset 11205 for branches/HiveStatistics/sources/HeuristicLab.Problems.DataAnalysis.Views/3.4/Solution Views/DataAnalysisSolutionView.Designer.cs
- Timestamp:
- 07/18/14 13:44:53 (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.Views
- Property svn:mergeinfo changed
-
branches/HiveStatistics/sources/HeuristicLab.Problems.DataAnalysis.Views/3.4/Solution Views/DataAnalysisSolutionView.Designer.cs
r11203 r11205 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. … … 19 19 */ 20 20 #endregion 21 21 22 namespace HeuristicLab.Problems.DataAnalysis.Views { 22 23 partial class DataAnalysisSolutionView { … … 44 45 /// </summary> 45 46 private void InitializeComponent() { 47 this.flowLayoutPanel = new System.Windows.Forms.FlowLayoutPanel(); 48 this.loadProblemDataButton = new System.Windows.Forms.Button(); 49 this.loadProblemDataFileDialog = new System.Windows.Forms.OpenFileDialog(); 46 50 ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).BeginInit(); 47 51 this.splitContainer.Panel1.SuspendLayout(); … … 51 55 this.detailsGroupBox.SuspendLayout(); 52 56 this.SuspendLayout(); 57 // 58 // itemslistView 59 // 60 this.itemsListView.Location = new System.Drawing.Point(this.itemsListView.Location.X, this.itemsListView.Location.Y + 3); 61 // 62 // detailsGroupBox 63 // 64 this.detailsGroupBox.Location = new System.Drawing.Point(this.detailsGroupBox.Location.X, this.detailsGroupBox.Location.Y + 3); 65 // 53 66 // 54 67 // splitContainer 55 68 // 56 69 // 70 // splitContainer.Panel2 71 // 72 this.splitContainer.Panel2.Controls.Add(this.flowLayoutPanel); 73 // 57 74 // itemsGroupBox 58 75 // 59 76 this.itemsGroupBox.Text = "Data Analysis Solution"; 77 // 78 // flowLayoutPanel 79 // 80 this.flowLayoutPanel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right))); 81 this.flowLayoutPanel.FlowDirection = System.Windows.Forms.FlowDirection.LeftToRight; 82 this.flowLayoutPanel.Location = new System.Drawing.Point(0, 0); 83 this.flowLayoutPanel.Padding = new System.Windows.Forms.Padding(3, 0, 3, 0); 84 this.flowLayoutPanel.Size = new System.Drawing.Size(266, 30); 85 this.flowLayoutPanel.Controls.Add(this.loadProblemDataButton); 86 // 87 // loadProblemDataButton 88 // 89 this.loadProblemDataButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom))); 90 this.loadProblemDataButton.AutoSize = true; 91 this.loadProblemDataButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Open; 92 this.loadProblemDataButton.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; 93 this.loadProblemDataButton.Name = "loadProblemDataButton"; 94 this.loadProblemDataButton.Size = new System.Drawing.Size(105, 24); 95 this.loadProblemDataButton.TabIndex = 6; 96 this.loadProblemDataButton.Text = "Load new Data"; 97 this.loadProblemDataButton.TextAlign = System.Drawing.ContentAlignment.MiddleRight; 98 this.loadProblemDataButton.UseVisualStyleBackColor = true; 99 this.loadProblemDataButton.Click += new System.EventHandler(this.loadProblemDataButton_Click); 100 this.toolTip.SetToolTip(this.loadProblemDataButton, "Creates a new data analysis solution with the same model and the loaded problem data."); 60 101 // 61 // addButton102 // openFileDialog 62 103 // 63 this.toolTip.SetToolTip(this.addButton, "Add"); 64 // 65 // removeButton 66 // 67 this.toolTip.SetToolTip(this.removeButton, "Remove"); 104 this.loadProblemDataFileDialog.Filter = "HL files|*.hl"; 105 this.loadProblemDataFileDialog.Title = "Load new ProblemData or Problem..."; 68 106 // 69 107 // DataAnalysisSolutionView 70 108 // 71 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);72 109 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit; 73 110 this.Name = "DataAnalysisSolutionView"; … … 84 121 #endregion 85 122 123 protected System.Windows.Forms.Button loadProblemDataButton; 124 protected System.Windows.Forms.OpenFileDialog loadProblemDataFileDialog; 125 protected System.Windows.Forms.FlowLayoutPanel flowLayoutPanel; 126 86 127 } 87 128 }
Note: See TracChangeset
for help on using the changeset viewer.