Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2931_OR-Tools_LP_MIP/HeuristicLab.Clients.Hive.Administrator/3.3/Views/ProjectJobsView.Designer.cs @ 16139

Last change on this file since 16139 was 16139, checked in by ddorfmei, 6 years ago

#2931: Merged [16046-16138/trunk] into branch

File size: 4.7 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
21
22using HeuristicLab.Data.Views;
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      this.refreshButton = new System.Windows.Forms.Button();
51      this.removeButton = new System.Windows.Forms.Button();
52      this.matrixView = new HeuristicLab.Data.Views.StringConvertibleMatrixView();
53      this.toolTip = new System.Windows.Forms.ToolTip(this.components);
54      this.SuspendLayout();
55      //
56      // refreshButton
57      //
58      this.refreshButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Refresh;
59      this.refreshButton.Location = new System.Drawing.Point(3, 3);
60      this.refreshButton.Name = "refreshButton";
61      this.refreshButton.Size = new System.Drawing.Size(24, 24);
62      this.refreshButton.TabIndex = 1;
63      this.toolTip.SetToolTip(this.refreshButton, "Refresh data");
64      this.refreshButton.UseVisualStyleBackColor = true;
65      this.refreshButton.Click += new System.EventHandler(this.refreshButton_Click);
66      //
67      // removeButton
68      //
69      this.removeButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Remove;
70      this.removeButton.Location = new System.Drawing.Point(33, 3);
71      this.removeButton.Name = "removeButton";
72      this.removeButton.Size = new System.Drawing.Size(24, 24);
73      this.removeButton.TabIndex = 2;
74      this.toolTip.SetToolTip(this.removeButton, "Delete job(s)");
75      this.removeButton.UseVisualStyleBackColor = true;
76      this.removeButton.Click += new System.EventHandler(this.removeButton_Click);
77      //
78      // matrixView
79      //
80      this.matrixView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
81            | System.Windows.Forms.AnchorStyles.Left)
82            | System.Windows.Forms.AnchorStyles.Right)));
83      this.matrixView.Caption = "StringConvertibleMatrix View";
84      this.matrixView.Content = null;
85      this.matrixView.Location = new System.Drawing.Point(3, 33);
86      this.matrixView.Name = "matrixView";
87      this.matrixView.ReadOnly = false;
88      this.matrixView.ShowRowsAndColumnsTextBox = false;
89      this.matrixView.ShowStatisticalInformation = false;
90      this.matrixView.Size = new System.Drawing.Size(504, 349);
91      this.matrixView.TabIndex = 3;
92      //
93      // ProjectJobsView
94      //
95      this.AllowDrop = true;
96      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
97      this.Controls.Add(this.matrixView);
98      this.Controls.Add(this.refreshButton);
99      this.Controls.Add(this.removeButton);
100      this.Name = "ProjectJobsView";
101      this.Size = new System.Drawing.Size(510, 385);
102      this.Load += new System.EventHandler(this.ProjectJobsView_Load);
103      this.ResumeLayout(false);
104
105    }
106
107    #endregion
108
109    private System.Windows.Forms.ToolTip toolTip;
110    private System.Windows.Forms.Button refreshButton;
111    private System.Windows.Forms.Button removeButton;
112    private StringConvertibleMatrixView matrixView;
113  }
114}
Note: See TracBrowser for help on using the repository browser.