Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3.2/sources/HeuristicLab.Hive.Server.Console/3.2/JobListViewControl.Designer.cs @ 4539

Last change on this file since 4539 was 4042, checked in by kgrading, 14 years ago

#828 added various improvements to the plugin cache manager, the execution engine, the transaction handling on the serverside and the server console

File size: 4.7 KB
Line 
1namespace HeuristicLab.Hive.Server.ServerConsole {
2  partial class JobListViewControl {
3    /// <summary>
4    /// Required designer variable.
5    /// </summary>
6    private System.ComponentModel.IContainer components = null;
7
8    /// <summary>
9    /// Clean up any resources being used.
10    /// </summary>
11    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
12    protected override void Dispose(bool disposing) {
13      if (disposing && (components != null)) {
14        components.Dispose();
15      }
16      base.Dispose(disposing);
17    }
18
19    #region Component Designer generated code
20
21    /// <summary>
22    /// Required method for Designer support - do not modify
23    /// the contents of this method with the code editor.
24    /// </summary>
25    private void InitializeComponent() {
26      this.splitContainer1 = new System.Windows.Forms.SplitContainer();
27      this.comboBox1 = new System.Windows.Forms.ComboBox();
28      this.btn_finishedJob_next = new System.Windows.Forms.Button();
29      this.btn_finishedJob_prev = new System.Windows.Forms.Button();
30      this.listView1 = new JobListView(null, 5);
31      this.splitContainer1.Panel1.SuspendLayout();
32      this.splitContainer1.Panel2.SuspendLayout();
33      this.splitContainer1.SuspendLayout();
34      this.SuspendLayout();
35      //
36      // splitContainer1
37      //
38      this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
39      this.splitContainer1.Location = new System.Drawing.Point(0, 0);
40      this.splitContainer1.Name = "splitContainer1";
41      this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
42      //
43      // splitContainer1.Panel1
44      //
45      this.splitContainer1.Panel1.Controls.Add(this.comboBox1);
46      this.splitContainer1.Panel1.Controls.Add(this.btn_finishedJob_next);
47      this.splitContainer1.Panel1.Controls.Add(this.btn_finishedJob_prev);
48      //
49      // splitContainer1.Panel2
50      //
51      this.splitContainer1.Panel2.Controls.Add(this.listView1);
52      this.splitContainer1.Size = new System.Drawing.Size(586, 479);
53      this.splitContainer1.SplitterDistance = 31;
54      this.splitContainer1.TabIndex = 0;
55      //
56      // comboBox1
57      //
58      this.comboBox1.FormattingEnabled = true;
59      this.comboBox1.Items.AddRange(new object[] {
60            "25",
61            "50",
62            "75",
63            "100"});
64      this.comboBox1.Location = new System.Drawing.Point(165, 3);
65      this.comboBox1.Name = "comboBox1";
66      this.comboBox1.Size = new System.Drawing.Size(48, 21);
67      this.comboBox1.TabIndex = 5;
68      //
69      // btn_finishedJob_next
70      //
71      this.btn_finishedJob_next.Location = new System.Drawing.Point(84, 3);
72      this.btn_finishedJob_next.Name = "btn_finishedJob_next";
73      this.btn_finishedJob_next.Size = new System.Drawing.Size(75, 23);
74      this.btn_finishedJob_next.TabIndex = 4;
75      this.btn_finishedJob_next.Text = "-->";
76      this.btn_finishedJob_next.UseVisualStyleBackColor = true;
77      //
78      // btn_finishedJob_prev
79      //
80      this.btn_finishedJob_prev.Location = new System.Drawing.Point(3, 3);
81      this.btn_finishedJob_prev.Name = "btn_finishedJob_prev";
82      this.btn_finishedJob_prev.Size = new System.Drawing.Size(75, 23);
83      this.btn_finishedJob_prev.TabIndex = 3;
84      this.btn_finishedJob_prev.Text = "<--";
85      this.btn_finishedJob_prev.UseVisualStyleBackColor = true;
86      //
87      // listView1
88      //
89      this.listView1.Dock = System.Windows.Forms.DockStyle.Fill;
90      this.listView1.Location = new System.Drawing.Point(0, 0);
91      this.listView1.Name = "listView1";
92      this.listView1.Size = new System.Drawing.Size(586, 444);
93      this.listView1.TabIndex = 0;
94      this.listView1.UseCompatibleStateImageBehavior = false;
95      //
96      // JobListViewControl
97      //
98      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
99      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
100      this.Controls.Add(this.splitContainer1);
101      this.Name = "JobListViewControl";
102      this.Size = new System.Drawing.Size(586, 479);
103      this.splitContainer1.Panel1.ResumeLayout(false);
104      this.splitContainer1.Panel2.ResumeLayout(false);
105      this.splitContainer1.ResumeLayout(false);
106      this.ResumeLayout(false);
107
108    }
109
110    #endregion
111
112    private System.Windows.Forms.SplitContainer splitContainer1;
113    private System.Windows.Forms.ComboBox comboBox1;
114    private System.Windows.Forms.Button btn_finishedJob_next;
115    private System.Windows.Forms.Button btn_finishedJob_prev;
116    private System.Windows.Forms.ListView listView1;
117  }
118}
Note: See TracBrowser for help on using the repository browser.