Changeset 4141 for branches/3.3-HiveMigration/sources/HeuristicLab.Hive/HeuristicLab.Hive.Experiment.Views/3.3
- Timestamp:
- 08/04/10 10:44:14 (14 years ago)
- 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 58 58 this.logTabPage = new System.Windows.Forms.TabPage(); 59 59 this.logView = new HeuristicLab.Core.Views.LogView(); 60 this.requestSnapshotButton = new System.Windows.Forms.Button(); 60 61 this.snapshotGroupBox.SuspendLayout(); 61 62 this.jobStatusGroupBox.SuspendLayout(); … … 247 248 this.snapshotGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 248 249 | System.Windows.Forms.AnchorStyles.Right))); 250 this.snapshotGroupBox.Controls.Add(this.requestSnapshotButton); 249 251 this.snapshotGroupBox.Controls.Add(this.openSnapshotButton); 250 252 this.snapshotGroupBox.Controls.Add(this.snapshotTimeText); … … 262 264 // 263 265 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(42 6, 67);266 this.openSnapshotButton.Location = new System.Drawing.Point(420, 67); 265 267 this.openSnapshotButton.Name = "openSnapshotButton"; 266 this.openSnapshotButton.Size = new System.Drawing.Size(10 1, 26);268 this.openSnapshotButton.Size = new System.Drawing.Size(107, 26); 267 269 this.openSnapshotButton.TabIndex = 25; 268 270 this.openSnapshotButton.Text = "Open Snapshot"; … … 415 417 this.logView.Size = new System.Drawing.Size(536, 447); 416 418 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); 417 430 // 418 431 // JobItemView … … 471 484 private System.Windows.Forms.TabPage logTabPage; 472 485 private Core.Views.LogView logView; 486 private System.Windows.Forms.Button requestSnapshotButton; 473 487 } 474 488 } -
branches/3.3-HiveMigration/sources/HeuristicLab.Hive/HeuristicLab.Hive.Experiment.Views/3.3/JobItemView.cs
r4133 r4141 111 111 MainFormManager.MainForm.ShowContent(job.Optimizer); 112 112 } 113 114 private void requestSnapshotButton_Click(object sender, EventArgs e) { 115 116 } 113 117 } 114 118 }
Note: See TracChangeset
for help on using the changeset viewer.