namespace GitUI.Script { partial class SimplePrompt { /// <summary> /// Required designer variable. /// </summary> private System.ComponentModel.IContainer components = null; /// <summary> /// Clean up any resources being used. /// </summary> /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param> protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SimplePrompt)); this.btn_OK = new System.Windows.Forms.Button(); this.txt_UserInput = new System.Windows.Forms.TextBox(); this.label1 = new System.Windows.Forms.Label(); this.SuspendLayout(); // // btn_OK // this.btn_OK.Location = new System.Drawing.Point(194, 47); this.btn_OK.Name = "btn_OK"; this.btn_OK.Size = new System.Drawing.Size(75, 23); this.btn_OK.TabIndex = 0; this.btn_OK.Text = "&OK"; this.btn_OK.UseVisualStyleBackColor = true; this.btn_OK.Click += new System.EventHandler(this.btn_OK_Click); // // txt_UserInput // this.txt_UserInput.Location = new System.Drawing.Point(12, 21); this.txt_UserInput.Name = "txt_UserInput"; this.txt_UserInput.Size = new System.Drawing.Size(257, 20); this.txt_UserInput.TabIndex = 1; // // label1 // this.label1.AutoSize = true; this.label1.Location = new System.Drawing.Point(10, 5); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(127, 13); this.label1.TabIndex = 2; this.label1.Text = "Please specify your input:"; // // SimplePrompt // this.AcceptButton = this.btn_OK; this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi; this.ClientSize = new System.Drawing.Size(281, 73); this.Controls.Add(this.label1); this.Controls.Add(this.txt_UserInput); this.Controls.Add(this.btn_OK); this.Name = "SimplePrompt"; this.Text = "SimplePrompt"; this.Shown += new System.EventHandler(this.SimplePrompt_Shown); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.Button btn_OK; private System.Windows.Forms.TextBox txt_UserInput; private System.Windows.Forms.Label label1; } }