Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/15/12 20:26:50 (12 years ago)
Author:
ascheibe
Message:

#1851 set the DefineArithmeticProgressionDialog to be topmost

Location:
trunk/sources/HeuristicLab.Optimizer/3.3
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Optimizer/3.3/CreateExperimentDialog.cs

    r7985 r8011  
    248248      #endregion
    249249      using (var dialog = new DefineArithmeticProgressionDialog(integerOnly, min, max, step)) {
    250         if (dialog.ShowDialog() == DialogResult.OK) {
     250        if (dialog.ShowDialog(this) == DialogResult.OK) {
    251251          var values = dialog.Values;
    252252          if (integerOnly) {
  • trunk/sources/HeuristicLab.Optimizer/3.3/DefineArithmeticProgressionDialog.Designer.cs

    r7985 r8011  
    6060      // stepSizeTextBox
    6161      //
    62       this.stepSizeTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
    63                   | System.Windows.Forms.AnchorStyles.Right)));
     62      this.stepSizeTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
     63            | System.Windows.Forms.AnchorStyles.Right)));
    6464      this.stepSizeTextBox.Location = new System.Drawing.Point(75, 64);
    6565      this.stepSizeTextBox.Name = "stepSizeTextBox";
     
    7070      // maximumTextBox
    7171      //
    72       this.maximumTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
    73                   | System.Windows.Forms.AnchorStyles.Right)));
     72      this.maximumTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
     73            | System.Windows.Forms.AnchorStyles.Right)));
    7474      this.maximumTextBox.Location = new System.Drawing.Point(75, 38);
    7575      this.maximumTextBox.Name = "maximumTextBox";
     
    8080      // minimumTextBox
    8181      //
    82       this.minimumTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
    83                   | System.Windows.Forms.AnchorStyles.Right)));
     82      this.minimumTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
     83            | System.Windows.Forms.AnchorStyles.Right)));
    8484      this.minimumTextBox.Location = new System.Drawing.Point(75, 12);
    8585      this.minimumTextBox.Name = "minimumTextBox";
     
    159159      this.MinimizeBox = false;
    160160      this.Name = "DefineArithmeticProgressionDialog";
     161      this.ShowIcon = false;
     162      this.ShowInTaskbar = false;
     163      this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
    161164      this.Text = "Generate Values";
     165      this.TopMost = true;
    162166      this.Load += new System.EventHandler(this.DefineArithmeticProgressionDialog_Load);
    163167      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
Note: See TracChangeset for help on using the changeset viewer.