Click here to Skip to main content
15,886,578 members
Articles / Programming Languages / C#

Code Review Plug-in for Visual Studio 2008, ReviewPal

Rate me:
Please Sign up or sign in to vote.
4.59/5 (18 votes)
4 Nov 2009CPOL5 min read 94.8K   1.1K   61  
ReviewPal is a Visual Studio 2008 IDE plug-in to help out doing code reviews. Helps the user with collecting review comments and reporting them within the IDE with easy navigation.
namespace ReviewPal.UI
{
    partial class Summary
    {
        /// <summary>
        /// Required designer variable.
        /// </summary>
        private System.ComponentModel.IContainer components = null;

        /// <summary>
        /// Clean up any resources being used.
        /// </summary>
        /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
        protected override void Dispose(bool disposing)
        {
            if (disposing && (components != null))
            {
                components.Dispose();
            }
            base.Dispose(disposing);
        }

        #region Windows Form Designer generated code

        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.label1 = new System.Windows.Forms.Label();
            this.txtProject = new System.Windows.Forms.TextBox();
            this.txtReviewEffort = new System.Windows.Forms.TextBox();
            this.label2 = new System.Windows.Forms.Label();
            this.txtReworkEffort = new System.Windows.Forms.TextBox();
            this.label3 = new System.Windows.Forms.Label();
            this.btnOk = new System.Windows.Forms.Button();
            this.SuspendLayout();
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Location = new System.Drawing.Point(12, 9);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(40, 13);
            this.label1.TabIndex = 8;
            this.label1.Text = "Project";
            // 
            // txtProject
            // 
            this.txtProject.Location = new System.Drawing.Point(58, 6);
            this.txtProject.Name = "txtProject";
            this.txtProject.Size = new System.Drawing.Size(298, 20);
            this.txtProject.TabIndex = 9;
            // 
            // txtReviewEffort
            // 
            this.txtReviewEffort.Location = new System.Drawing.Point(100, 40);
            this.txtReviewEffort.Name = "txtReviewEffort";
            this.txtReviewEffort.Size = new System.Drawing.Size(256, 20);
            this.txtReviewEffort.TabIndex = 11;
            // 
            // label2
            // 
            this.label2.AutoSize = true;
            this.label2.Location = new System.Drawing.Point(12, 43);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(70, 13);
            this.label2.TabIndex = 10;
            this.label2.Text = "Review effort";
            // 
            // txtReworkEffort
            // 
            this.txtReworkEffort.Location = new System.Drawing.Point(100, 66);
            this.txtReworkEffort.Name = "txtReworkEffort";
            this.txtReworkEffort.Size = new System.Drawing.Size(256, 20);
            this.txtReworkEffort.TabIndex = 13;
            // 
            // label3
            // 
            this.label3.AutoSize = true;
            this.label3.Location = new System.Drawing.Point(12, 69);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(71, 13);
            this.label3.TabIndex = 12;
            this.label3.Text = "Rework effort";
            // 
            // btnOk
            // 
            this.btnOk.Location = new System.Drawing.Point(281, 104);
            this.btnOk.Name = "btnOk";
            this.btnOk.Size = new System.Drawing.Size(75, 23);
            this.btnOk.TabIndex = 14;
            this.btnOk.Text = "Ok";
            this.btnOk.UseVisualStyleBackColor = true;
            this.btnOk.Click += new System.EventHandler(this.btnOk_Click);
            // 
            // Summary
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(371, 138);
            this.Controls.Add(this.btnOk);
            this.Controls.Add(this.txtReworkEffort);
            this.Controls.Add(this.label3);
            this.Controls.Add(this.txtReviewEffort);
            this.Controls.Add(this.label2);
            this.Controls.Add(this.txtProject);
            this.Controls.Add(this.label1);
            this.MaximizeBox = false;
            this.MinimizeBox = false;
            this.Name = "Summary";
            this.ShowIcon = false;
            this.ShowInTaskbar = false;
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
            this.Text = "Summary";
            this.ResumeLayout(false);
            this.PerformLayout();

        }

        #endregion

        private System.Windows.Forms.Label label1;
        private System.Windows.Forms.TextBox txtProject;
        private System.Windows.Forms.TextBox txtReviewEffort;
        private System.Windows.Forms.Label label2;
        private System.Windows.Forms.TextBox txtReworkEffort;
        private System.Windows.Forms.Label label3;
        private System.Windows.Forms.Button btnOk;
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Technical Lead Zone24x7
Sri Lanka Sri Lanka
Working on .Net stuff, over five years of experience mainly on Web development.
MCP,MCAD,MCSD

http://chathurangaw.blogspot.com/

Comments and Discussions