namespace tso.debug.network { partial class StringDialog { /// /// 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() { this.description = new System.Windows.Forms.Label(); this.btnCancel = new System.Windows.Forms.Button(); this.btnOk = new System.Windows.Forms.Button(); this.txtValue = new System.Windows.Forms.TextBox(); this.SuspendLayout(); // // description // this.description.AutoSize = true; this.description.Location = new System.Drawing.Point(12, 9); this.description.Name = "description"; this.description.Size = new System.Drawing.Size(35, 13); this.description.TabIndex = 0; this.description.Text = "label1"; // // btnCancel // this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel; this.btnCancel.Location = new System.Drawing.Point(299, 62); this.btnCancel.Name = "btnCancel"; this.btnCancel.Size = new System.Drawing.Size(75, 23); this.btnCancel.TabIndex = 1; this.btnCancel.Text = "Cancel"; this.btnCancel.UseVisualStyleBackColor = true; // // btnOk // this.btnOk.DialogResult = System.Windows.Forms.DialogResult.OK; this.btnOk.Enabled = false; this.btnOk.Location = new System.Drawing.Point(218, 62); this.btnOk.Name = "btnOk"; this.btnOk.Size = new System.Drawing.Size(75, 23); this.btnOk.TabIndex = 2; this.btnOk.Text = "Ok"; this.btnOk.UseVisualStyleBackColor = true; this.btnOk.Click += new System.EventHandler(this.btnOk_Click); // // txtValue // this.txtValue.Location = new System.Drawing.Point(15, 36); this.txtValue.Name = "txtValue"; this.txtValue.Size = new System.Drawing.Size(359, 20); this.txtValue.TabIndex = 3; this.txtValue.TextChanged += new System.EventHandler(this.txtValue_TextChanged); this.txtValue.Enter += new System.EventHandler(this.txtValue_Enter); // // StringDialog // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(386, 96); this.Controls.Add(this.txtValue); this.Controls.Add(this.btnOk); this.Controls.Add(this.btnCancel); this.Controls.Add(this.description); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; this.Name = "StringDialog"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; this.Deactivate += new System.EventHandler(this.StringDialog_Deactivate); this.Load += new System.EventHandler(this.StringModal_Load); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.Label description; private System.Windows.Forms.Button btnCancel; private System.Windows.Forms.Button btnOk; private System.Windows.Forms.TextBox txtValue; } }