namespace YARTE.Example { partial class AddTaskDialog { /// /// 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.btnCancel = new System.Windows.Forms.Button(); this.btnAdd = new System.Windows.Forms.Button(); this.txtInput = new System.Windows.Forms.TextBox(); this.SuspendLayout(); // // btnCancel // this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel; this.btnCancel.Location = new System.Drawing.Point(244, 75); 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); // // btnAdd // this.btnAdd.Location = new System.Drawing.Point(325, 75); this.btnAdd.Name = "btnAdd"; this.btnAdd.Size = new System.Drawing.Size(75, 23); this.btnAdd.TabIndex = 1; this.btnAdd.Text = "Add"; this.btnAdd.UseVisualStyleBackColor = true; this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click); // // txtInput // this.txtInput.Location = new System.Drawing.Point(12, 30); this.txtInput.Name = "txtInput"; this.txtInput.Size = new System.Drawing.Size(388, 22); this.txtInput.TabIndex = 0; // // AddTaskDialog // this.AcceptButton = this.btnAdd; this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.CancelButton = this.btnCancel; this.ClientSize = new System.Drawing.Size(412, 110); this.Controls.Add(this.txtInput); this.Controls.Add(this.btnAdd); this.Controls.Add(this.btnCancel); this.Name = "AddTaskDialog"; this.Text = "AddTaskDialog"; this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.Button btnCancel; private System.Windows.Forms.Button btnAdd; private System.Windows.Forms.TextBox txtInput; } }