comparison ARClient/frmTextInput.Designer.cs @ 0:90ea68d4f92f

First release
author Ivo Smits <Ivo@UCIS.nl>
date Sat, 08 Nov 2014 22:43:51 +0100
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:90ea68d4f92f
1 namespace ARClient {
2 partial class frmTextInput {
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.lblDescription = new System.Windows.Forms.Label();
27 this.textBox1 = new System.Windows.Forms.TextBox();
28 this.btnOk = new System.Windows.Forms.Button();
29 this.btnCancel = new System.Windows.Forms.Button();
30 this.SuspendLayout();
31 //
32 // lblDescription
33 //
34 this.lblDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
35 | System.Windows.Forms.AnchorStyles.Left)
36 | System.Windows.Forms.AnchorStyles.Right)));
37 this.lblDescription.Location = new System.Drawing.Point(12, 9);
38 this.lblDescription.Name = "lblDescription";
39 this.lblDescription.Size = new System.Drawing.Size(507, 38);
40 this.lblDescription.TabIndex = 0;
41 this.lblDescription.Text = "label1";
42 //
43 // textBox1
44 //
45 this.textBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
46 | System.Windows.Forms.AnchorStyles.Right)));
47 this.textBox1.Location = new System.Drawing.Point(12, 51);
48 this.textBox1.Name = "textBox1";
49 this.textBox1.Size = new System.Drawing.Size(507, 20);
50 this.textBox1.TabIndex = 1;
51 this.textBox1.KeyUp += new System.Windows.Forms.KeyEventHandler(this.textBox1_KeyUp);
52 //
53 // btnOk
54 //
55 this.btnOk.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
56 this.btnOk.Location = new System.Drawing.Point(342, 77);
57 this.btnOk.Name = "btnOk";
58 this.btnOk.Size = new System.Drawing.Size(85, 25);
59 this.btnOk.TabIndex = 2;
60 this.btnOk.Text = "OK";
61 this.btnOk.UseVisualStyleBackColor = true;
62 this.btnOk.Click += new System.EventHandler(this.btnOk_Click);
63 //
64 // btnCancel
65 //
66 this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
67 this.btnCancel.Location = new System.Drawing.Point(433, 77);
68 this.btnCancel.Name = "btnCancel";
69 this.btnCancel.Size = new System.Drawing.Size(85, 25);
70 this.btnCancel.TabIndex = 3;
71 this.btnCancel.Text = "Cancel";
72 this.btnCancel.UseVisualStyleBackColor = true;
73 this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
74 //
75 // frmTextInput
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(531, 114);
80 this.Controls.Add(this.btnCancel);
81 this.Controls.Add(this.btnOk);
82 this.Controls.Add(this.textBox1);
83 this.Controls.Add(this.lblDescription);
84 this.Name = "frmTextInput";
85 this.Text = "frmTextInput";
86 this.ResumeLayout(false);
87 this.PerformLayout();
88
89 }
90
91 #endregion
92
93 private System.Windows.Forms.Label lblDescription;
94 private System.Windows.Forms.TextBox textBox1;
95 private System.Windows.Forms.Button btnOk;
96 private System.Windows.Forms.Button btnCancel;
97 }
98 }