Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/tools/HeuristicLab.HiveDrain/HeuristicLab.HiveDrain/HiveDrainMainWindow.Designer.cs @ 15346

Last change on this file since 15346 was 15342, checked in by mkommend, 7 years ago

#2829: Added Hive.Drain to HeuristicLab.Tools.

File size: 5.0 KB
Line 
1namespace HeuristicLab.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.oneFileCheckBox = new System.Windows.Forms.CheckBox();
32      this.SuspendLayout();
33      //
34      // label1
35      //
36      this.label1.AutoSize = true;
37      this.label1.Location = new System.Drawing.Point(12, 15);
38      this.label1.Name = "label1";
39      this.label1.Size = new System.Drawing.Size(134, 13);
40      this.label1.TabIndex = 0;
41      this.label1.Text = "Pattern to match job name:";
42      //
43      // patterTextBox
44      //
45      this.patterTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
46            | System.Windows.Forms.AnchorStyles.Right)));
47      this.patterTextBox.Location = new System.Drawing.Point(152, 12);
48      this.patterTextBox.Name = "patterTextBox";
49      this.patterTextBox.Size = new System.Drawing.Size(678, 20);
50      this.patterTextBox.TabIndex = 1;
51      //
52      // downloadButton
53      //
54      this.downloadButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
55      this.downloadButton.Location = new System.Drawing.Point(698, 38);
56      this.downloadButton.Name = "downloadButton";
57      this.downloadButton.Size = new System.Drawing.Size(132, 23);
58      this.downloadButton.TabIndex = 3;
59      this.downloadButton.Text = "Download";
60      this.downloadButton.UseVisualStyleBackColor = true;
61      this.downloadButton.Click += new System.EventHandler(this.downloadButton_Click);
62      //
63      // logView
64      //
65      this.logView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
66            | System.Windows.Forms.AnchorStyles.Left)
67            | System.Windows.Forms.AnchorStyles.Right)));
68      this.logView.Caption = "Log View";
69      this.logView.Content = null;
70      this.logView.Location = new System.Drawing.Point(15, 67);
71      this.logView.Name = "logView";
72      this.logView.ReadOnly = false;
73      this.logView.Size = new System.Drawing.Size(815, 368);
74      this.logView.TabIndex = 4;
75      //
76      // oneFileCheckBox
77      //
78      this.oneFileCheckBox.AutoSize = true;
79      this.oneFileCheckBox.Checked = true;
80      this.oneFileCheckBox.CheckState = System.Windows.Forms.CheckState.Checked;
81      this.oneFileCheckBox.Location = new System.Drawing.Point(15, 44);
82      this.oneFileCheckBox.Name = "oneFileCheckBox";
83      this.oneFileCheckBox.Size = new System.Drawing.Size(102, 17);
84      this.oneFileCheckBox.TabIndex = 5;
85      this.oneFileCheckBox.Text = "Save as one file";
86      this.oneFileCheckBox.UseVisualStyleBackColor = true;
87      //
88      // HiveDrainMainWindow
89      //
90      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
91      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
92      this.ClientSize = new System.Drawing.Size(842, 447);
93      this.Controls.Add(this.oneFileCheckBox);
94      this.Controls.Add(this.logView);
95      this.Controls.Add(this.downloadButton);
96      this.Controls.Add(this.patterTextBox);
97      this.Controls.Add(this.label1);
98      this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
99      this.Name = "HiveDrainMainWindow";
100      this.Text = "HiveDrainMainWindow";
101      this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.HiveDrainMainWindow_FormClosing);
102      this.ResumeLayout(false);
103      this.PerformLayout();
104
105    }
106
107    #endregion
108
109    private System.Windows.Forms.Label label1;
110    private System.Windows.Forms.TextBox patterTextBox;
111    private System.Windows.Forms.Button downloadButton;
112    private HeuristicLab.Core.Views.LogView logView;
113    private System.Windows.Forms.CheckBox oneFileCheckBox;
114  }
115}
Note: See TracBrowser for help on using the repository browser.