[6976] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[16565] | 3 | * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[6976] | 4 | *
|
---|
| 5 | * This file is part of HeuristicLab.
|
---|
| 6 | *
|
---|
| 7 | * HeuristicLab is free software: you can redistribute it and/or modify
|
---|
| 8 | * it under the terms of the GNU General Public License as published by
|
---|
| 9 | * the Free Software Foundation, either version 3 of the License, or
|
---|
| 10 | * (at your option) any later version.
|
---|
| 11 | *
|
---|
| 12 | * HeuristicLab is distributed in the hope that it will be useful,
|
---|
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
| 15 | * GNU General Public License for more details.
|
---|
| 16 | *
|
---|
| 17 | * You should have received a copy of the GNU General Public License
|
---|
| 18 | * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
|
---|
| 19 | */
|
---|
| 20 | #endregion
|
---|
| 21 |
|
---|
| 22 | namespace HeuristicLab.Clients.Hive.JobManager.Views {
|
---|
| 23 | partial class HiveJobManagerView {
|
---|
| 24 | /// <summary>
|
---|
| 25 | /// Required designer variable.
|
---|
| 26 | /// </summary>
|
---|
| 27 | private System.ComponentModel.IContainer components = null;
|
---|
| 28 |
|
---|
| 29 | /// <summary>
|
---|
| 30 | /// Clean up any resources being used.
|
---|
| 31 | /// </summary>
|
---|
| 32 | /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
---|
| 33 | protected override void Dispose(bool disposing) {
|
---|
| 34 | if (disposing) {
|
---|
| 35 | if (components != null) components.Dispose();
|
---|
| 36 | }
|
---|
| 37 | base.Dispose(disposing);
|
---|
| 38 | }
|
---|
| 39 |
|
---|
| 40 | #region Component Designer generated code
|
---|
| 41 |
|
---|
| 42 | /// <summary>
|
---|
| 43 | /// Required method for Designer support - do not modify
|
---|
| 44 | /// the contents of this method with the code editor.
|
---|
| 45 | /// </summary>
|
---|
| 46 | private void InitializeComponent() {
|
---|
[16117] | 47 | this.components = new System.ComponentModel.Container();
|
---|
[6976] | 48 | this.hiveExperimentListView = new RefreshableHiveJobListView();
|
---|
| 49 | this.refreshButton = new System.Windows.Forms.Button();
|
---|
[16117] | 50 | this.toolTip = new System.Windows.Forms.ToolTip(this.components);
|
---|
[6976] | 51 | this.SuspendLayout();
|
---|
| 52 | //
|
---|
| 53 | // hiveExperimentListView
|
---|
| 54 | //
|
---|
| 55 | this.hiveExperimentListView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
| 56 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 57 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 58 | this.hiveExperimentListView.Caption = "HiveExperimentList View";
|
---|
| 59 | this.hiveExperimentListView.Content = null;
|
---|
| 60 | this.hiveExperimentListView.Location = new System.Drawing.Point(3, 33);
|
---|
| 61 | this.hiveExperimentListView.Name = "hiveExperimentListView";
|
---|
| 62 | this.hiveExperimentListView.ReadOnly = false;
|
---|
| 63 | this.hiveExperimentListView.Size = new System.Drawing.Size(729, 488);
|
---|
| 64 | this.hiveExperimentListView.TabIndex = 0;
|
---|
| 65 | //
|
---|
| 66 | // refreshButton
|
---|
| 67 | //
|
---|
[7257] | 68 | this.refreshButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Refresh;
|
---|
[6976] | 69 | this.refreshButton.Location = new System.Drawing.Point(3, 3);
|
---|
| 70 | this.refreshButton.Name = "refreshButton";
|
---|
| 71 | this.refreshButton.Size = new System.Drawing.Size(24, 24);
|
---|
| 72 | this.refreshButton.TabIndex = 1;
|
---|
[16117] | 73 | this.toolTip.SetToolTip(this.refreshButton, "Refresh data");
|
---|
[6976] | 74 | this.refreshButton.UseVisualStyleBackColor = true;
|
---|
| 75 | this.refreshButton.Click += new System.EventHandler(this.refreshButton_Click);
|
---|
| 76 | //
|
---|
| 77 | // HiveExperimentManagerView
|
---|
| 78 | //
|
---|
| 79 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
[7967] | 80 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
|
---|
[6976] | 81 | this.Controls.Add(this.refreshButton);
|
---|
| 82 | this.Controls.Add(this.hiveExperimentListView);
|
---|
[7103] | 83 | this.Name = "JobManagerView";
|
---|
[6976] | 84 | this.Size = new System.Drawing.Size(735, 524);
|
---|
| 85 | this.ResumeLayout(false);
|
---|
| 86 |
|
---|
| 87 | }
|
---|
| 88 | #endregion
|
---|
| 89 |
|
---|
| 90 | private RefreshableHiveJobListView hiveExperimentListView;
|
---|
| 91 | private System.Windows.Forms.Button refreshButton;
|
---|
[16117] | 92 | private System.Windows.Forms.ToolTip toolTip;
|
---|
[6976] | 93 |
|
---|
| 94 | }
|
---|
| 95 | }
|
---|