namespace sharprd { partial class TextInputDialog { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(TextInputDialog)); this.lblMessage = new System.Windows.Forms.Label(); this.txtText = new System.Windows.Forms.TextBox(); this.btnCancel = new System.Windows.Forms.Button(); this.btnOk = new System.Windows.Forms.Button(); this.SuspendLayout(); // // lblMessage // this.lblMessage.AutoSize = true; this.lblMessage.Location = new System.Drawing.Point(14, 22); this.lblMessage.Name = "lblMessage"; this.lblMessage.Size = new System.Drawing.Size(50, 13); this.lblMessage.TabIndex = 0; this.lblMessage.Text = "Message"; // // txtText // this.txtText.Location = new System.Drawing.Point(17, 54); this.txtText.Name = "txtText"; this.txtText.Size = new System.Drawing.Size(264, 20); this.txtText.TabIndex = 1; // // btnCancel // this.btnCancel.Location = new System.Drawing.Point(206, 106); this.btnCancel.Name = "btnCancel"; this.btnCancel.Size = new System.Drawing.Size(75, 23); this.btnCancel.TabIndex = 2; this.btnCancel.Text = "Cancel"; this.btnCancel.UseVisualStyleBackColor = true; this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click); // // btnOk // this.btnOk.Location = new System.Drawing.Point(124, 106); this.btnOk.Name = "btnOk"; this.btnOk.Size = new System.Drawing.Size(75, 23); this.btnOk.TabIndex = 3; this.btnOk.Text = "Ok"; this.btnOk.UseVisualStyleBackColor = true; this.btnOk.Click += new System.EventHandler(this.btnOk_Click); // // TextInputDialog // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(293, 144); this.Controls.Add(this.btnOk); this.Controls.Add(this.btnCancel); this.Controls.Add(this.txtText); this.Controls.Add(this.lblMessage); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D; this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.Name = "TextInputDialog"; this.Text = "TextInputDialog"; this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.Label lblMessage; private System.Windows.Forms.TextBox txtText; private System.Windows.Forms.Button btnCancel; private System.Windows.Forms.Button btnOk; } }