using System.Windows.Forms; namespace TaskMan { partial class RegularTaskEntryForm { /// /// 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.groupBox1 = new System.Windows.Forms.GroupBox(); this.dailyTaskEntry = new ListEntry(); this.groupBox2 = new System.Windows.Forms.GroupBox(); this.weeklyTaskEntry = new ListEntry(); this.button2 = new System.Windows.Forms.Button(); this.OK = new System.Windows.Forms.Button(); this.groupBox1.SuspendLayout(); this.groupBox2.SuspendLayout(); this.SuspendLayout(); // // groupBox1 // this.groupBox1.Controls.Add(this.dailyTaskEntry); this.groupBox1.Location = new System.Drawing.Point(12, 12); this.groupBox1.Name = "groupBox1"; this.groupBox1.Size = new System.Drawing.Size(468, 145); this.groupBox1.TabIndex = 1; this.groupBox1.TabStop = false; this.groupBox1.Text = "Daily Tasks"; // // dailyTaskEntry // this.dailyTaskEntry.AutoScroll = true; this.dailyTaskEntry.Location = new System.Drawing.Point(8, 13); this.dailyTaskEntry.Name = "dailyTaskEntry"; this.dailyTaskEntry.Size = new System.Drawing.Size(454, 120); this.dailyTaskEntry.TabIndex = 0; // // groupBox2 // this.groupBox2.Controls.Add(this.weeklyTaskEntry); this.groupBox2.Location = new System.Drawing.Point(12, 163); this.groupBox2.Name = "groupBox2"; this.groupBox2.Size = new System.Drawing.Size(468, 145); this.groupBox2.TabIndex = 2; this.groupBox2.TabStop = false; this.groupBox2.Text = "Weekly Tasks"; // // weeklyTaskEntry // this.weeklyTaskEntry.AutoScroll = true; this.weeklyTaskEntry.Location = new System.Drawing.Point(8, 13); this.weeklyTaskEntry.Name = "weeklyTaskEntry"; this.weeklyTaskEntry.Size = new System.Drawing.Size(454, 120); this.weeklyTaskEntry.TabIndex = 0; // // button2 // this.button2.Location = new System.Drawing.Point(231, 337); this.button2.Name = "button2"; this.button2.Size = new System.Drawing.Size(111, 37); this.button2.TabIndex = 4; this.button2.Text = "Cancel"; this.button2.UseVisualStyleBackColor = true; this.button2.Click += new System.EventHandler(this.button2_Click); // // OK // this.OK.Location = new System.Drawing.Point(97, 337); this.OK.Name = "OK"; this.OK.Size = new System.Drawing.Size(104, 37); this.OK.TabIndex = 5; this.OK.Text = "OK"; this.OK.UseVisualStyleBackColor = true; this.OK.Click += new System.EventHandler(this.OK_Click); // // Form1 // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(501, 436); this.Controls.Add(this.OK); this.Controls.Add(this.button2); this.Controls.Add(this.groupBox2); this.Controls.Add(this.groupBox1); this.Name = "Form1"; this.Text = "Form1"; this.groupBox1.ResumeLayout(false); this.groupBox2.ResumeLayout(false); this.ResumeLayout(false); } #endregion private ListEntry dailyTaskEntry; private System.Windows.Forms.GroupBox groupBox1; private System.Windows.Forms.GroupBox groupBox2; private ListEntry weeklyTaskEntry; private System.Windows.Forms.Button button2; private System.Windows.Forms.Button OK; } }