Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2839_HiveProjectManagement/HeuristicLab.Clients.Hive.Administrator/3.3/Views/ProjectJobsView.Designer.cs @ 15978

Last change on this file since 15978 was 15966, checked in by jzenisek, 6 years ago

#2839: Fixed several bugs and added project duration handling

  • fixed project duration handling (client- & service-side)
  • fixed tagging in HiveJobAdmin
  • added ProjectJobs view (under construction)
  • added necessary service methods
File size: 4.9 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
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
21using HeuristicLab.Data.Views;
22using System;
23
24namespace HeuristicLab.Clients.Hive.Administrator.Views {
25  partial class ProjectJobsView {
26    /// <summary>
27    /// Required designer variable.
28    /// </summary>
29    private System.ComponentModel.IContainer components = null;
30
31    /// <summary>
32    /// Clean up any resources being used.
33    /// </summary>
34    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
35    protected override void Dispose(bool disposing) {
36      if (disposing && (components != null)) {
37        components.Dispose();
38      }
39      base.Dispose(disposing);
40    }
41
42    #region Component Designer generated code
43
44    /// <summary>
45    /// Required method for Designer support - do not modify
46    /// the contents of this method with the code editor.
47    /// </summary>
48    private void InitializeComponent() {
49      this.components = new System.ComponentModel.Container();
50      System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ProjectJobsView));
51      this.refreshButton = new System.Windows.Forms.Button();
52      this.removeButton = new System.Windows.Forms.Button();
53      this.matrixView = new HeuristicLab.Data.Views.StringConvertibleMatrixView();
54      this.toolTip = new System.Windows.Forms.ToolTip(this.components);
55      this.SuspendLayout();
56      //
57      // refreshButton
58      //
59      this.refreshButton.Image = ((System.Drawing.Image)(resources.GetObject("refreshButton.Image")));
60      this.refreshButton.Location = new System.Drawing.Point(3, 3);
61      this.refreshButton.Name = "refreshButton";
62      this.refreshButton.Size = new System.Drawing.Size(24, 24);
63      this.refreshButton.TabIndex = 1;
64      this.toolTip.SetToolTip(this.refreshButton, "Refresh data");
65      this.refreshButton.UseVisualStyleBackColor = true;
66      this.refreshButton.Click += new System.EventHandler(this.refreshButton_Click);
67      //
68      // removeButton
69      //
70      this.removeButton.Image = ((System.Drawing.Image)(resources.GetObject("removeButton.Image")));
71      this.removeButton.Location = new System.Drawing.Point(33, 3);
72      this.removeButton.Name = "removeButton";
73      this.removeButton.Size = new System.Drawing.Size(24, 24);
74      this.removeButton.TabIndex = 2;
75      this.toolTip.SetToolTip(this.removeButton, "Delete job(s)");
76      this.removeButton.UseVisualStyleBackColor = true;
77      this.removeButton.Click += new System.EventHandler(this.removeButton_Click);
78      //
79      // matrixView
80      //
81      this.matrixView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
82            | System.Windows.Forms.AnchorStyles.Left)
83            | System.Windows.Forms.AnchorStyles.Right)));
84      this.matrixView.Caption = "StringConvertibleMatrix View";
85      this.matrixView.Content = null;
86      this.matrixView.Location = new System.Drawing.Point(3, 33);
87      this.matrixView.Name = "matrixView";
88      this.matrixView.ReadOnly = false;
89      this.matrixView.ShowRowsAndColumnsTextBox = false;
90      this.matrixView.ShowStatisticalInformation = false;
91      this.matrixView.Size = new System.Drawing.Size(504, 349);
92      this.matrixView.TabIndex = 3;
93      //
94      // ProjectJobsView
95      //
96      this.AllowDrop = true;
97      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
98      this.Controls.Add(this.matrixView);
99      this.Controls.Add(this.refreshButton);
100      this.Controls.Add(this.removeButton);
101      this.Name = "ProjectJobsView";
102      this.Size = new System.Drawing.Size(510, 385);
103      this.Load += new System.EventHandler(this.ProjectJobsView_Load);
104      this.ResumeLayout(false);
105
106    }
107
108    #endregion
109
110    private System.Windows.Forms.ToolTip toolTip;
111    private System.Windows.Forms.Button refreshButton;
112    private System.Windows.Forms.Button removeButton;
113    private StringConvertibleMatrixView matrixView;
114  }
115}
Note: See TracBrowser for help on using the repository browser.