private void Init() { pn_done = new ScrumPanel(false, UserName); this.pn_done.AutoScroll = true; this.pn_done.Dock = System.Windows.Forms.DockStyle.Fill; this.pn_done.Location = new System.Drawing.Point(3, 16); this.pn_done.Name = "pn_done"; this.pn_done.Size = new System.Drawing.Size(234, 483); this.pn_done.TabIndex = 0; this.pn_done.OnPanelClick += Pn_done_OnPanelClick; this.groupBox2.Controls.Add(pn_done); }
private void Init() { pn_pending = new ScrumPanel(true, UserName); this.pn_pending.AutoScroll = true; this.pn_pending.Dock = System.Windows.Forms.DockStyle.Fill; this.pn_pending.Location = new System.Drawing.Point(3, 16); this.pn_pending.Name = "pn_pending"; this.pn_pending.Size = new System.Drawing.Size(878, 131); this.pn_pending.TabIndex = 0; this.groupBox3.Controls.Add(pn_pending); // // pn_todo // pn_todo = new ScrumPanel(false, UserName); this.pn_todo.AutoScroll = true; this.pn_todo.Dock = System.Windows.Forms.DockStyle.Fill; this.pn_todo.Location = new System.Drawing.Point(3, 16); this.pn_todo.Name = "pn_todo"; this.pn_todo.Size = new System.Drawing.Size(234, 483); this.pn_todo.TabIndex = 0; this.groupBox2.Controls.Add(pn_todo); // // pn_progress // pn_progress = new ScrumPanel(false, UserName); this.pn_progress.AutoScroll = true; this.pn_progress.Dock = System.Windows.Forms.DockStyle.Fill; this.pn_progress.Location = new System.Drawing.Point(3, 16); this.pn_progress.Name = "pn_progress"; this.pn_progress.Size = new System.Drawing.Size(234, 483); this.pn_progress.TabIndex = 0; this.groupBox4.Controls.Add(pn_progress); // // pn_review // pn_review = new ScrumPanel(false, UserName); this.pn_review.AutoScroll = true; this.pn_review.Dock = System.Windows.Forms.DockStyle.Fill; this.pn_review.Location = new System.Drawing.Point(3, 16); this.pn_review.Name = "pn_review"; this.pn_review.Size = new System.Drawing.Size(234, 483); this.pn_review.TabIndex = 0; this.groupBox5.Controls.Add(pn_review); }