1 | namespace HeuristicLab.Services.Authentication.TestClient2 {
|
---|
2 | partial class Form1 {
|
---|
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 | this.lbl_Applications = new System.Windows.Forms.Label();
|
---|
27 | this.cbx_Applications = new System.Windows.Forms.ComboBox();
|
---|
28 | this.SuspendLayout();
|
---|
29 | //
|
---|
30 | // lbl_Applications
|
---|
31 | //
|
---|
32 | this.lbl_Applications.AutoSize = true;
|
---|
33 | this.lbl_Applications.Location = new System.Drawing.Point(13, 13);
|
---|
34 | this.lbl_Applications.Name = "lbl_Applications";
|
---|
35 | this.lbl_Applications.Size = new System.Drawing.Size(64, 13);
|
---|
36 | this.lbl_Applications.TabIndex = 0;
|
---|
37 | this.lbl_Applications.Text = "Applications";
|
---|
38 | //
|
---|
39 | // cbx_Applications
|
---|
40 | //
|
---|
41 | this.cbx_Applications.FormattingEnabled = true;
|
---|
42 | this.cbx_Applications.Location = new System.Drawing.Point(84, 13);
|
---|
43 | this.cbx_Applications.Name = "cbx_Applications";
|
---|
44 | this.cbx_Applications.Size = new System.Drawing.Size(400, 21);
|
---|
45 | this.cbx_Applications.TabIndex = 1;
|
---|
46 | //
|
---|
47 | // Form1
|
---|
48 | //
|
---|
49 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
50 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
51 | this.ClientSize = new System.Drawing.Size(533, 317);
|
---|
52 | this.Controls.Add(this.cbx_Applications);
|
---|
53 | this.Controls.Add(this.lbl_Applications);
|
---|
54 | this.Name = "Form1";
|
---|
55 | this.Text = "Form1";
|
---|
56 | this.Load += new System.EventHandler(this.Form1_Load);
|
---|
57 | this.ResumeLayout(false);
|
---|
58 | this.PerformLayout();
|
---|
59 |
|
---|
60 | }
|
---|
61 |
|
---|
62 | #endregion
|
---|
63 |
|
---|
64 | private System.Windows.Forms.Label lbl_Applications;
|
---|
65 | private System.Windows.Forms.ComboBox cbx_Applications;
|
---|
66 |
|
---|
67 | }
|
---|
68 | } |
---|