Changeset 7956 for trunk/sources/HeuristicLab.Problems.Instances.Views/3.3/ProblemInstanceProviderViewGeneric.Designer.cs
- Timestamp:
- 06/04/12 21:50:19 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Problems.Instances.Views/3.3/ProblemInstanceProviderViewGeneric.Designer.cs
r7849 r7956 49 49 this.instanceLabel = new System.Windows.Forms.Label(); 50 50 this.instancesComboBox = new System.Windows.Forms.ComboBox(); 51 this.importButton = new System.Windows.Forms.Button();52 51 this.openFileDialog = new System.Windows.Forms.OpenFileDialog(); 53 52 this.toolTip = new System.Windows.Forms.ToolTip(this.components); 54 this.exportButton = new System.Windows.Forms.Button();55 53 this.saveFileDialog = new System.Windows.Forms.SaveFileDialog(); 56 this.problemInstanceProviderSplitContainer = new System.Windows.Forms.SplitContainer();57 ((System.ComponentModel.ISupportInitialize)(this.problemInstanceProviderSplitContainer)).BeginInit();58 this.problemInstanceProviderSplitContainer.Panel1.SuspendLayout();59 this.problemInstanceProviderSplitContainer.Panel2.SuspendLayout();60 this.problemInstanceProviderSplitContainer.SuspendLayout();61 54 this.SuspendLayout(); 62 55 // … … 64 57 // 65 58 this.loadButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); 66 this.loadButton.Location = new System.Drawing.Point(6 04, 0);59 this.loadButton.Location = new System.Drawing.Point(667, -1); 67 60 this.loadButton.Name = "loadButton"; 68 61 this.loadButton.Size = new System.Drawing.Size(24, 24); … … 83 76 // instancesComboBox 84 77 // 85 this.instancesComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 78 this.instancesComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 86 79 | System.Windows.Forms.AnchorStyles.Right))); 87 80 this.instancesComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; … … 89 82 this.instancesComboBox.Location = new System.Drawing.Point(60, 1); 90 83 this.instancesComboBox.Name = "instancesComboBox"; 91 this.instancesComboBox.Size = new System.Drawing.Size( 538, 21);84 this.instancesComboBox.Size = new System.Drawing.Size(601, 21); 92 85 this.instancesComboBox.TabIndex = 7; 93 this.instancesComboBox.DataSourceChanged += new System.EventHandler(this.comboBox_DataSourceChanged); 94 // 95 // importButton 96 // 97 this.importButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); 98 this.importButton.Location = new System.Drawing.Point(636, 0); 99 this.importButton.Name = "importButton"; 100 this.importButton.Size = new System.Drawing.Size(24, 24); 101 this.importButton.TabIndex = 6; 102 this.importButton.Text = "Import"; 103 this.importButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText; 104 this.importButton.UseVisualStyleBackColor = true; 105 this.importButton.Click += new System.EventHandler(this.importButton_Click); 86 this.instancesComboBox.DataSourceChanged += new System.EventHandler(this.instancesComboBox_DataSourceChanged); 106 87 // 107 88 // openFileDialog 108 89 // 109 90 this.openFileDialog.Filter = "All files|*.*"; 110 //111 // exportButton112 //113 this.exportButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));114 this.exportButton.Location = new System.Drawing.Point(-1, 0);115 this.exportButton.Name = "exportButton";116 this.exportButton.Size = new System.Drawing.Size(24, 24);117 this.exportButton.TabIndex = 8;118 this.exportButton.Text = "Export";119 this.exportButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;120 this.exportButton.UseVisualStyleBackColor = true;121 this.exportButton.Click += new System.EventHandler(this.exportButton_Click);122 91 // 123 92 // saveFileDialog … … 126 95 this.saveFileDialog.Title = "Save RegressionInstance..."; 127 96 // 128 // problemInstanceProviderSplitContainer 129 // 130 this.problemInstanceProviderSplitContainer.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 131 | System.Windows.Forms.AnchorStyles.Left) 132 | System.Windows.Forms.AnchorStyles.Right))); 133 this.problemInstanceProviderSplitContainer.FixedPanel = System.Windows.Forms.FixedPanel.Panel2; 134 this.problemInstanceProviderSplitContainer.IsSplitterFixed = true; 135 this.problemInstanceProviderSplitContainer.Location = new System.Drawing.Point(0, -1); 136 this.problemInstanceProviderSplitContainer.Name = "problemInstanceProviderSplitContainer"; 137 // 138 // problemInstanceProviderSplitContainer.Panel1 139 // 140 this.problemInstanceProviderSplitContainer.Panel1.Controls.Add(this.instanceLabel); 141 this.problemInstanceProviderSplitContainer.Panel1.Controls.Add(this.instancesComboBox); 142 this.problemInstanceProviderSplitContainer.Panel1.Controls.Add(this.importButton); 143 this.problemInstanceProviderSplitContainer.Panel1.Controls.Add(this.loadButton); 144 // 145 // problemInstanceProviderSplitContainer.Panel2 146 // 147 this.problemInstanceProviderSplitContainer.Panel2.Controls.Add(this.exportButton); 148 this.problemInstanceProviderSplitContainer.Size = new System.Drawing.Size(694, 22); 149 this.problemInstanceProviderSplitContainer.SplitterDistance = 665; 150 this.problemInstanceProviderSplitContainer.TabIndex = 9; 151 // 152 // ProblemInstanceProviderView 97 // ProblemInstanceProviderViewGeneric 153 98 // 154 99 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); 155 100 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 156 this.Controls.Add(this.problemInstanceProviderSplitContainer); 157 this.Name = "ProblemInstanceProviderView"; 101 this.Controls.Add(this.instanceLabel); 102 this.Controls.Add(this.instancesComboBox); 103 this.Controls.Add(this.loadButton); 104 this.Name = "ProblemInstanceProviderViewGeneric"; 158 105 this.Size = new System.Drawing.Size(694, 21); 159 this.problemInstanceProviderSplitContainer.Panel1.ResumeLayout(false);160 this.problemInstanceProviderSplitContainer.Panel1.PerformLayout();161 this.problemInstanceProviderSplitContainer.Panel2.ResumeLayout(false);162 ((System.ComponentModel.ISupportInitialize)(this.problemInstanceProviderSplitContainer)).EndInit();163 this.problemInstanceProviderSplitContainer.ResumeLayout(false);164 106 this.ResumeLayout(false); 107 this.PerformLayout(); 165 108 166 109 } … … 173 116 protected System.Windows.Forms.Label instanceLabel; 174 117 protected System.Windows.Forms.ComboBox instancesComboBox; 175 protected System.Windows.Forms.Button importButton;176 protected System.Windows.Forms.Button exportButton;177 118 protected System.Windows.Forms.SaveFileDialog saveFileDialog; 178 protected System.Windows.Forms.SplitContainer problemInstanceProviderSplitContainer;179 180 119 } 181 120 }
Note: See TracChangeset
for help on using the changeset viewer.