Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
08/04/10 10:44:14 (14 years ago)
Author:
cneumuel
Message:

merged with changes from Hive-3.2

Location:
branches/3.3-HiveMigration/sources/HeuristicLab.Hive/HeuristicLab.Hive.Experiment.Views/3.3
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/3.3-HiveMigration/sources/HeuristicLab.Hive/HeuristicLab.Hive.Experiment.Views/3.3/JobItemView.Designer.cs

    r4133 r4141  
    5858      this.logTabPage = new System.Windows.Forms.TabPage();
    5959      this.logView = new HeuristicLab.Core.Views.LogView();
     60      this.requestSnapshotButton = new System.Windows.Forms.Button();
    6061      this.snapshotGroupBox.SuspendLayout();
    6162      this.jobStatusGroupBox.SuspendLayout();
     
    247248      this.snapshotGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
    248249                  | System.Windows.Forms.AnchorStyles.Right)));
     250      this.snapshotGroupBox.Controls.Add(this.requestSnapshotButton);
    249251      this.snapshotGroupBox.Controls.Add(this.openSnapshotButton);
    250252      this.snapshotGroupBox.Controls.Add(this.snapshotTimeText);
     
    262264      //
    263265      this.openSnapshotButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
    264       this.openSnapshotButton.Location = new System.Drawing.Point(426, 67);
     266      this.openSnapshotButton.Location = new System.Drawing.Point(420, 67);
    265267      this.openSnapshotButton.Name = "openSnapshotButton";
    266       this.openSnapshotButton.Size = new System.Drawing.Size(101, 26);
     268      this.openSnapshotButton.Size = new System.Drawing.Size(107, 26);
    267269      this.openSnapshotButton.TabIndex = 25;
    268270      this.openSnapshotButton.Text = "Open Snapshot";
     
    415417      this.logView.Size = new System.Drawing.Size(536, 447);
    416418      this.logView.TabIndex = 0;
     419      //
     420      // requestSnapshotButton
     421      //
     422      this.requestSnapshotButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     423      this.requestSnapshotButton.Location = new System.Drawing.Point(307, 67);
     424      this.requestSnapshotButton.Name = "requestSnapshotButton";
     425      this.requestSnapshotButton.Size = new System.Drawing.Size(107, 26);
     426      this.requestSnapshotButton.TabIndex = 26;
     427      this.requestSnapshotButton.Text = "Request Snapshot";
     428      this.requestSnapshotButton.UseVisualStyleBackColor = true;
     429      this.requestSnapshotButton.Click += new System.EventHandler(this.requestSnapshotButton_Click);
    417430      //
    418431      // JobItemView
     
    471484    private System.Windows.Forms.TabPage logTabPage;
    472485    private Core.Views.LogView logView;
     486    private System.Windows.Forms.Button requestSnapshotButton;
    473487  }
    474488}
  • branches/3.3-HiveMigration/sources/HeuristicLab.Hive/HeuristicLab.Hive.Experiment.Views/3.3/JobItemView.cs

    r4133 r4141  
    111111      MainFormManager.MainForm.ShowContent(job.Optimizer);
    112112    }
     113
     114    private void requestSnapshotButton_Click(object sender, EventArgs e) {
     115     
     116    }
    113117  }
    114118}
Note: See TracChangeset for help on using the changeset viewer.