Changeset 8011 for trunk/sources
- Timestamp:
- 06/15/12 20:26:50 (12 years ago)
- Location:
- trunk/sources/HeuristicLab.Optimizer/3.3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Optimizer/3.3/CreateExperimentDialog.cs
r7985 r8011 248 248 #endregion 249 249 using (var dialog = new DefineArithmeticProgressionDialog(integerOnly, min, max, step)) { 250 if (dialog.ShowDialog( ) == DialogResult.OK) {250 if (dialog.ShowDialog(this) == DialogResult.OK) { 251 251 var values = dialog.Values; 252 252 if (integerOnly) { -
trunk/sources/HeuristicLab.Optimizer/3.3/DefineArithmeticProgressionDialog.Designer.cs
r7985 r8011 60 60 // stepSizeTextBox 61 61 // 62 this.stepSizeTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 63 62 this.stepSizeTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 63 | System.Windows.Forms.AnchorStyles.Right))); 64 64 this.stepSizeTextBox.Location = new System.Drawing.Point(75, 64); 65 65 this.stepSizeTextBox.Name = "stepSizeTextBox"; … … 70 70 // maximumTextBox 71 71 // 72 this.maximumTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 73 72 this.maximumTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 73 | System.Windows.Forms.AnchorStyles.Right))); 74 74 this.maximumTextBox.Location = new System.Drawing.Point(75, 38); 75 75 this.maximumTextBox.Name = "maximumTextBox"; … … 80 80 // minimumTextBox 81 81 // 82 this.minimumTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 83 82 this.minimumTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 83 | System.Windows.Forms.AnchorStyles.Right))); 84 84 this.minimumTextBox.Location = new System.Drawing.Point(75, 12); 85 85 this.minimumTextBox.Name = "minimumTextBox"; … … 159 159 this.MinimizeBox = false; 160 160 this.Name = "DefineArithmeticProgressionDialog"; 161 this.ShowIcon = false; 162 this.ShowInTaskbar = false; 163 this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; 161 164 this.Text = "Generate Values"; 165 this.TopMost = true; 162 166 this.Load += new System.EventHandler(this.DefineArithmeticProgressionDialog_Load); 163 167 ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
Note: See TracChangeset
for help on using the changeset viewer.