Click here to Skip to main content
15,881,882 members
Articles / Programming Languages / C#

ADB - Documentation Compiler for Managed Class Libraries

Rate me:
Please Sign up or sign in to vote.
4.60/5 (4 votes)
8 Mar 2009CPOL1 min read 30.7K   834   29  
ADB produces MSDN style documentation by reflecting and integrating XML Documentation Comments.
namespace ADB.Factories
{
    partial class GetBuildModeDialog
    {
        /// <summary>
        /// 必需的设计器变量。
        /// </summary>
        private System.ComponentModel.IContainer components = null;

        /// <summary>
        /// 清理所有正在使用的资源。
        /// </summary>
        /// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
        protected override void Dispose(bool disposing)
        {
            if (disposing && (components != null))
            {
                components.Dispose();
            }
            base.Dispose(disposing);
        }

        #region Windows 窗体设计器生成的代码

        /// <summary>
        /// 设计器支持所需的方法 - 不要
        /// 使用代码编辑器修改此方法的内容。
        /// </summary>
        private void InitializeComponent()
        {
            this.rbHTMLAndCHM = new System.Windows.Forms.RadioButton();
            this.rbHTMOnly = new System.Windows.Forms.RadioButton();
            this.button1 = new System.Windows.Forms.Button();
            this.SuspendLayout();
            // 
            // rbHTMLAndCHM
            // 
            this.rbHTMLAndCHM.AutoSize = true;
            this.rbHTMLAndCHM.Checked = true;
            this.rbHTMLAndCHM.Location = new System.Drawing.Point(13, 13);
            this.rbHTMLAndCHM.Name = "rbHTMLAndCHM";
            this.rbHTMLAndCHM.Size = new System.Drawing.Size(149, 16);
            this.rbHTMLAndCHM.TabIndex = 0;
            this.rbHTMLAndCHM.TabStop = true;
            this.rbHTMLAndCHM.Text = "生成HTML页面和CHM文档";
            this.rbHTMLAndCHM.UseVisualStyleBackColor = true;
            // 
            // rbHTMOnly
            // 
            this.rbHTMOnly.AutoSize = true;
            this.rbHTMOnly.Location = new System.Drawing.Point(13, 36);
            this.rbHTMOnly.Name = "rbHTMOnly";
            this.rbHTMOnly.Size = new System.Drawing.Size(245, 16);
            this.rbHTMOnly.TabIndex = 1;
            this.rbHTMOnly.TabStop = true;
            this.rbHTMOnly.Text = "仅生成HTML页面和打包CHM所需的工程文件";
            this.rbHTMOnly.UseVisualStyleBackColor = true;
            // 
            // button1
            // 
            this.button1.Location = new System.Drawing.Point(180, 58);
            this.button1.Name = "button1";
            this.button1.Size = new System.Drawing.Size(74, 23);
            this.button1.TabIndex = 2;
            this.button1.Text = "确定";
            this.button1.UseVisualStyleBackColor = true;
            this.button1.Click += new System.EventHandler(this.button1_Click);
            // 
            // GetBuildModeDialog
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(266, 90);
            this.Controls.Add(this.button1);
            this.Controls.Add(this.rbHTMOnly);
            this.Controls.Add(this.rbHTMLAndCHM);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
            this.Name = "GetBuildModeDialog";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
            this.Text = "选择";
            this.ResumeLayout(false);
            this.PerformLayout();

        }

        #endregion

        private System.Windows.Forms.RadioButton rbHTMLAndCHM;
        private System.Windows.Forms.RadioButton rbHTMOnly;
        private System.Windows.Forms.Button button1;
    }
}

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
Software Developer
China China
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions