namespace TestTaskService { partial class NewFolderDlg { /// /// 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.cancelBtn = new System.Windows.Forms.Button(); this.okBtn = new System.Windows.Forms.Button(); this.label1 = new System.Windows.Forms.Label(); this.nameText = new System.Windows.Forms.TextBox(); this.SuspendLayout(); // // cancelBtn // this.cancelBtn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.cancelBtn.DialogResult = System.Windows.Forms.DialogResult.Cancel; this.cancelBtn.Location = new System.Drawing.Point(288, 62); this.cancelBtn.Name = "cancelBtn"; this.cancelBtn.Size = new System.Drawing.Size(75, 23); this.cancelBtn.TabIndex = 3; this.cancelBtn.Text = "Cancel"; this.cancelBtn.UseVisualStyleBackColor = true; this.cancelBtn.Click += new System.EventHandler(this.cancelBtn_Click); // // okBtn // this.okBtn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.okBtn.Enabled = false; this.okBtn.Location = new System.Drawing.Point(207, 62); this.okBtn.Name = "okBtn"; this.okBtn.Size = new System.Drawing.Size(75, 23); this.okBtn.TabIndex = 2; this.okBtn.Text = "OK"; this.okBtn.UseVisualStyleBackColor = true; this.okBtn.Click += new System.EventHandler(this.okBtn_Click); // // label1 // this.label1.AutoSize = true; this.label1.Location = new System.Drawing.Point(13, 13); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(35, 13); this.label1.TabIndex = 0; this.label1.Text = "Name"; // // nameText // this.nameText.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.nameText.Location = new System.Drawing.Point(13, 30); this.nameText.Name = "nameText"; this.nameText.Size = new System.Drawing.Size(350, 20); this.nameText.TabIndex = 1; this.nameText.TextChanged += new System.EventHandler(this.nameText_TextChanged); // // NewFolderDlg // this.AcceptButton = this.okBtn; this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.CancelButton = this.cancelBtn; this.ClientSize = new System.Drawing.Size(375, 97); this.Controls.Add(this.nameText); this.Controls.Add(this.label1); this.Controls.Add(this.okBtn); this.Controls.Add(this.cancelBtn); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; this.Name = "NewFolderDlg"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; this.Text = "Enter name of the new folder"; this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.Button cancelBtn; private System.Windows.Forms.Button okBtn; private System.Windows.Forms.Label label1; private System.Windows.Forms.TextBox nameText; } }