1 | namespace HiveDrain {
|
---|
2 | partial class HiveDrainMainWindow {
|
---|
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 Windows Form 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 | System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(HiveDrainMainWindow));
|
---|
27 | this.label1 = new System.Windows.Forms.Label();
|
---|
28 | this.patterTextBox = new System.Windows.Forms.TextBox();
|
---|
29 | this.downloadButton = new System.Windows.Forms.Button();
|
---|
30 | this.logView = new HeuristicLab.Core.Views.LogView();
|
---|
31 | this.SuspendLayout();
|
---|
32 | //
|
---|
33 | // label1
|
---|
34 | //
|
---|
35 | this.label1.AutoSize = true;
|
---|
36 | this.label1.Location = new System.Drawing.Point(12, 15);
|
---|
37 | this.label1.Name = "label1";
|
---|
38 | this.label1.Size = new System.Drawing.Size(134, 13);
|
---|
39 | this.label1.TabIndex = 0;
|
---|
40 | this.label1.Text = "Pattern to match job name:";
|
---|
41 | //
|
---|
42 | // patterTextBox
|
---|
43 | //
|
---|
44 | this.patterTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
45 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
46 | this.patterTextBox.Location = new System.Drawing.Point(152, 12);
|
---|
47 | this.patterTextBox.Name = "patterTextBox";
|
---|
48 | this.patterTextBox.Size = new System.Drawing.Size(678, 20);
|
---|
49 | this.patterTextBox.TabIndex = 1;
|
---|
50 | //
|
---|
51 | // downloadButton
|
---|
52 | //
|
---|
53 | this.downloadButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
---|
54 | this.downloadButton.Location = new System.Drawing.Point(698, 38);
|
---|
55 | this.downloadButton.Name = "downloadButton";
|
---|
56 | this.downloadButton.Size = new System.Drawing.Size(132, 23);
|
---|
57 | this.downloadButton.TabIndex = 3;
|
---|
58 | this.downloadButton.Text = "Download";
|
---|
59 | this.downloadButton.UseVisualStyleBackColor = true;
|
---|
60 | this.downloadButton.Click += new System.EventHandler(this.downloadButton_Click);
|
---|
61 | //
|
---|
62 | // logView
|
---|
63 | //
|
---|
64 | this.logView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
65 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
66 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
67 | this.logView.Caption = "Log View";
|
---|
68 | this.logView.Content = null;
|
---|
69 | this.logView.Location = new System.Drawing.Point(15, 67);
|
---|
70 | this.logView.Name = "logView";
|
---|
71 | this.logView.ReadOnly = false;
|
---|
72 | this.logView.Size = new System.Drawing.Size(815, 368);
|
---|
73 | this.logView.TabIndex = 4;
|
---|
74 | //
|
---|
75 | // HiveDrainMainWindow
|
---|
76 | //
|
---|
77 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
78 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
79 | this.ClientSize = new System.Drawing.Size(842, 447);
|
---|
80 | this.Controls.Add(this.logView);
|
---|
81 | this.Controls.Add(this.downloadButton);
|
---|
82 | this.Controls.Add(this.patterTextBox);
|
---|
83 | this.Controls.Add(this.label1);
|
---|
84 | this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
---|
85 | this.Name = "HiveDrainMainWindow";
|
---|
86 | this.Text = "HiveDrainMainWindow";
|
---|
87 | this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.HiveDrainMainWindow_FormClosing);
|
---|
88 | this.ResumeLayout(false);
|
---|
89 | this.PerformLayout();
|
---|
90 |
|
---|
91 | }
|
---|
92 |
|
---|
93 | #endregion
|
---|
94 |
|
---|
95 | private System.Windows.Forms.Label label1;
|
---|
96 | private System.Windows.Forms.TextBox patterTextBox;
|
---|
97 | private System.Windows.Forms.Button downloadButton;
|
---|
98 | private HeuristicLab.Core.Views.LogView logView;
|
---|
99 | }
|
---|
100 | } |
---|