www.pudn.com > SourceCodeLineCounter.zip > Form1.Designer.cs


namespace Trustbridge.SourceCodeLineCounter 
{ 
    partial class Form1 
    { 
        ///  
        /// 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() 
        { 
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1)); 
            this.folderBrowserDialog1 = new System.Windows.Forms.FolderBrowserDialog(); 
            this.listView1 = new System.Windows.Forms.ListView(); 
            this.columnHeaderDirectory = new System.Windows.Forms.ColumnHeader(); 
            this.columnHeaderFile = new System.Windows.Forms.ColumnHeader(); 
            this.columnHeaderLines = new System.Windows.Forms.ColumnHeader(); 
            this.chkIncludeSubfolders = new System.Windows.Forms.CheckBox(); 
            this.statusStrip1 = new System.Windows.Forms.StatusStrip(); 
            this.toolStripStatuslblTotal = new System.Windows.Forms.ToolStripStatusLabel(); 
            this.toolStripStatuslblLines = new System.Windows.Forms.ToolStripStatusLabel(); 
            this.toolStripGrouping = new System.Windows.Forms.ToolStripDropDownButton(); 
            this.toolStripMenuItemAdd = new System.Windows.Forms.ToolStripMenuItem(); 
            this.toolStripMenuItemClear = new System.Windows.Forms.ToolStripMenuItem(); 
            this.toolStripMenuItemTotal = new System.Windows.Forms.ToolStripMenuItem(); 
            this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator(); 
            this.toolStripProgressBar1 = new System.Windows.Forms.ToolStripProgressBar(); 
            this.cmbSearchPattern = new System.Windows.Forms.ComboBox(); 
            this.label1 = new System.Windows.Forms.Label(); 
            this.lblNoFilesFound = new System.Windows.Forms.Label(); 
            this.menuStrip1 = new System.Windows.Forms.MenuStrip(); 
            this.mnuFile = new System.Windows.Forms.ToolStripMenuItem(); 
            this.mnuSelectFolder = new System.Windows.Forms.ToolStripMenuItem(); 
            this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripSeparator(); 
            this.mnuExit = new System.Windows.Forms.ToolStripMenuItem(); 
            this.mnuDirectoryOptions = new System.Windows.Forms.ToolStripMenuItem(); 
            this.mnuIncludeSubfolders = new System.Windows.Forms.ToolStripMenuItem(); 
            this.mnuFileOptions = new System.Windows.Forms.ToolStripMenuItem(); 
            this.mnuIncludeBlankLines = new System.Windows.Forms.ToolStripMenuItem(); 
            this.mnuIncludeComments = new System.Windows.Forms.ToolStripMenuItem(); 
            this.mnuIncludeAutoGenerated = new System.Windows.Forms.ToolStripMenuItem(); 
            this.mnuIncludeDesigner = new System.Windows.Forms.ToolStripMenuItem(); 
            this.toolStrip1 = new System.Windows.Forms.ToolStrip(); 
            this.lblFolder = new System.Windows.Forms.ToolStripLabel(); 
            this.btnRecount = new System.Windows.Forms.ToolStripButton(); 
            this.btnBrowse = new System.Windows.Forms.ToolStripSplitButton(); 
            this.mnuCopyToClipboard = new System.Windows.Forms.ToolStripMenuItem(); 
            this.statusStrip1.SuspendLayout(); 
            this.menuStrip1.SuspendLayout(); 
            this.toolStrip1.SuspendLayout(); 
            this.SuspendLayout(); 
            //  
            // folderBrowserDialog1 
            //  
            this.folderBrowserDialog1.ShowNewFolderButton = false; 
            //  
            // listView1 
            //  
            this.listView1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
                        | System.Windows.Forms.AnchorStyles.Left) 
                        | System.Windows.Forms.AnchorStyles.Right))); 
            this.listView1.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { 
            this.columnHeaderDirectory, 
            this.columnHeaderFile, 
            this.columnHeaderLines}); 
            this.listView1.FullRowSelect = true; 
            this.listView1.Location = new System.Drawing.Point(12, 73); 
            this.listView1.Name = "listView1"; 
            this.listView1.Size = new System.Drawing.Size(320, 201); 
            this.listView1.Sorting = System.Windows.Forms.SortOrder.Ascending; 
            this.listView1.TabIndex = 1; 
            this.listView1.UseCompatibleStateImageBehavior = false; 
            this.listView1.View = System.Windows.Forms.View.Details; 
            this.listView1.SizeChanged += new System.EventHandler(this.listView1_SizeChanged); 
            //  
            // columnHeaderDirectory 
            //  
            this.columnHeaderDirectory.Text = "Directory"; 
            this.columnHeaderDirectory.Width = 112; 
            //  
            // columnHeaderFile 
            //  
            this.columnHeaderFile.Text = "File Name"; 
            this.columnHeaderFile.Width = 122; 
            //  
            // columnHeaderLines 
            //  
            this.columnHeaderLines.Text = "Lines"; 
            this.columnHeaderLines.Width = 70; 
            //  
            // chkIncludeSubfolders 
            //  
            this.chkIncludeSubfolders.AutoSize = true; 
            this.chkIncludeSubfolders.Checked = true; 
            this.chkIncludeSubfolders.CheckState = System.Windows.Forms.CheckState.Checked; 
            this.chkIncludeSubfolders.Location = new System.Drawing.Point(12, 51); 
            this.chkIncludeSubfolders.Name = "chkIncludeSubfolders"; 
            this.chkIncludeSubfolders.Size = new System.Drawing.Size(127, 17); 
            this.chkIncludeSubfolders.TabIndex = 5; 
            this.chkIncludeSubfolders.Text = "Include all subfolders"; 
            this.chkIncludeSubfolders.UseVisualStyleBackColor = true; 
            this.chkIncludeSubfolders.Click += new System.EventHandler(this.chkIncludeSubfolders_Click); 
            //  
            // statusStrip1 
            //  
            this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { 
            this.toolStripStatuslblTotal, 
            this.toolStripStatuslblLines, 
            this.toolStripGrouping, 
            this.toolStripProgressBar1}); 
            this.statusStrip1.Location = new System.Drawing.Point(0, 287); 
            this.statusStrip1.Name = "statusStrip1"; 
            this.statusStrip1.Size = new System.Drawing.Size(344, 22); 
            this.statusStrip1.TabIndex = 7; 
            //  
            // toolStripStatuslblTotal 
            //  
            this.toolStripStatuslblTotal.Name = "toolStripStatuslblTotal"; 
            this.toolStripStatuslblTotal.Size = new System.Drawing.Size(104, 17); 
            this.toolStripStatuslblTotal.Text = "Total lines counted: "; 
            //  
            // toolStripStatuslblLines 
            //  
            this.toolStripStatuslblLines.Name = "toolStripStatuslblLines"; 
            this.toolStripStatuslblLines.Size = new System.Drawing.Size(162, 17); 
            this.toolStripStatuslblLines.Spring = true; 
            this.toolStripStatuslblLines.Text = "0 lines"; 
            this.toolStripStatuslblLines.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; 
            //  
            // toolStripGrouping 
            //  
            this.toolStripGrouping.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text; 
            this.toolStripGrouping.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { 
            this.toolStripMenuItemAdd, 
            this.toolStripMenuItemClear, 
            this.toolStripMenuItemTotal, 
            this.toolStripSeparator1}); 
            this.toolStripGrouping.Name = "toolStripGrouping"; 
            this.toolStripGrouping.Size = new System.Drawing.Size(63, 20); 
            this.toolStripGrouping.Text = "Grouping"; 
            //  
            // toolStripMenuItemAdd 
            //  
            this.toolStripMenuItemAdd.Name = "toolStripMenuItemAdd"; 
            this.toolStripMenuItemAdd.Size = new System.Drawing.Size(142, 22); 
            this.toolStripMenuItemAdd.Text = "Add"; 
            this.toolStripMenuItemAdd.Click += new System.EventHandler(this.toolStripMenuItemAdd_Click); 
            //  
            // toolStripMenuItemClear 
            //  
            this.toolStripMenuItemClear.Name = "toolStripMenuItemClear"; 
            this.toolStripMenuItemClear.Size = new System.Drawing.Size(142, 22); 
            this.toolStripMenuItemClear.Text = "Clear all"; 
            this.toolStripMenuItemClear.Click += new System.EventHandler(this.toolStripMenuItemClear_Click); 
            //  
            // toolStripMenuItemTotal 
            //  
            this.toolStripMenuItemTotal.Name = "toolStripMenuItemTotal"; 
            this.toolStripMenuItemTotal.Size = new System.Drawing.Size(142, 22); 
            this.toolStripMenuItemTotal.Text = "Total 0 lines"; 
            //  
            // toolStripSeparator1 
            //  
            this.toolStripSeparator1.Name = "toolStripSeparator1"; 
            this.toolStripSeparator1.Size = new System.Drawing.Size(139, 6); 
            //  
            // toolStripProgressBar1 
            //  
            this.toolStripProgressBar1.Name = "toolStripProgressBar1"; 
            this.toolStripProgressBar1.Size = new System.Drawing.Size(100, 16); 
            this.toolStripProgressBar1.Style = System.Windows.Forms.ProgressBarStyle.Continuous; 
            this.toolStripProgressBar1.Visible = false; 
            //  
            // cmbSearchPattern 
            //  
            this.cmbSearchPattern.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; 
            this.cmbSearchPattern.FormattingEnabled = true; 
            this.cmbSearchPattern.Location = new System.Drawing.Point(198, 49); 
            this.cmbSearchPattern.Name = "cmbSearchPattern"; 
            this.cmbSearchPattern.Size = new System.Drawing.Size(95, 21); 
            this.cmbSearchPattern.TabIndex = 8; 
            //  
            // label1 
            //  
            this.label1.AutoSize = true; 
            this.label1.Location = new System.Drawing.Point(145, 53); 
            this.label1.Name = "label1"; 
            this.label1.Size = new System.Drawing.Size(48, 13); 
            this.label1.TabIndex = 9; 
            this.label1.Text = "File filter"; 
            //  
            // lblNoFilesFound 
            //  
            this.lblNoFilesFound.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
                        | System.Windows.Forms.AnchorStyles.Left) 
                        | System.Windows.Forms.AnchorStyles.Right))); 
            this.lblNoFilesFound.BackColor = System.Drawing.SystemColors.Control; 
            this.lblNoFilesFound.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 
            this.lblNoFilesFound.Location = new System.Drawing.Point(130, 166); 
            this.lblNoFilesFound.Name = "lblNoFilesFound"; 
            this.lblNoFilesFound.Size = new System.Drawing.Size(86, 17); 
            this.lblNoFilesFound.TabIndex = 10; 
            this.lblNoFilesFound.Text = "No Files Found"; 
            this.lblNoFilesFound.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; 
            this.lblNoFilesFound.Visible = false; 
            //  
            // menuStrip1 
            //  
            this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { 
            this.mnuFile, 
            this.mnuDirectoryOptions, 
            this.mnuFileOptions}); 
            this.menuStrip1.Location = new System.Drawing.Point(0, 0); 
            this.menuStrip1.Name = "menuStrip1"; 
            this.menuStrip1.Size = new System.Drawing.Size(344, 24); 
            this.menuStrip1.TabIndex = 14; 
            this.menuStrip1.Text = "menuStrip1"; 
            //  
            // mnuFile 
            //  
            this.mnuFile.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { 
            this.mnuSelectFolder, 
            this.mnuCopyToClipboard, 
            this.toolStripMenuItem1, 
            this.mnuExit}); 
            this.mnuFile.Name = "mnuFile"; 
            this.mnuFile.Size = new System.Drawing.Size(35, 20); 
            this.mnuFile.Text = "&File"; 
            //  
            // mnuSelectFolder 
            //  
            this.mnuSelectFolder.Name = "mnuSelectFolder"; 
            this.mnuSelectFolder.Size = new System.Drawing.Size(169, 22); 
            this.mnuSelectFolder.Text = "Select folder"; 
            this.mnuSelectFolder.Click += new System.EventHandler(this.btnSelectFolder_Click); 
            //  
            // toolStripMenuItem1 
            //  
            this.toolStripMenuItem1.Name = "toolStripMenuItem1"; 
            this.toolStripMenuItem1.Size = new System.Drawing.Size(166, 6); 
            //  
            // mnuExit 
            //  
            this.mnuExit.Name = "mnuExit"; 
            this.mnuExit.Size = new System.Drawing.Size(169, 22); 
            this.mnuExit.Text = "E&xit"; 
            this.mnuExit.Click += new System.EventHandler(this.mnuExit_Click); 
            //  
            // mnuDirectoryOptions 
            //  
            this.mnuDirectoryOptions.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { 
            this.mnuIncludeSubfolders}); 
            this.mnuDirectoryOptions.Name = "mnuDirectoryOptions"; 
            this.mnuDirectoryOptions.Size = new System.Drawing.Size(103, 20); 
            this.mnuDirectoryOptions.Text = "&Directory Options"; 
            //  
            // mnuIncludeSubfolders 
            //  
            this.mnuIncludeSubfolders.Checked = true; 
            this.mnuIncludeSubfolders.CheckOnClick = true; 
            this.mnuIncludeSubfolders.CheckState = System.Windows.Forms.CheckState.Checked; 
            this.mnuIncludeSubfolders.Name = "mnuIncludeSubfolders"; 
            this.mnuIncludeSubfolders.Size = new System.Drawing.Size(186, 22); 
            this.mnuIncludeSubfolders.Text = "Include all subfolders"; 
            this.mnuIncludeSubfolders.Click += new System.EventHandler(this.mnuIncludeSubfolders_Click); 
            //  
            // mnuFileOptions 
            //  
            this.mnuFileOptions.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { 
            this.mnuIncludeBlankLines, 
            this.mnuIncludeComments, 
            this.mnuIncludeAutoGenerated, 
            this.mnuIncludeDesigner}); 
            this.mnuFileOptions.Name = "mnuFileOptions"; 
            this.mnuFileOptions.Size = new System.Drawing.Size(75, 20); 
            this.mnuFileOptions.Text = "File Options"; 
            //  
            // mnuIncludeBlankLines 
            //  
            this.mnuIncludeBlankLines.Checked = true; 
            this.mnuIncludeBlankLines.CheckOnClick = true; 
            this.mnuIncludeBlankLines.CheckState = System.Windows.Forms.CheckState.Checked; 
            this.mnuIncludeBlankLines.Name = "mnuIncludeBlankLines"; 
            this.mnuIncludeBlankLines.Size = new System.Drawing.Size(244, 22); 
            this.mnuIncludeBlankLines.Text = "Include blank lines"; 
            //  
            // mnuIncludeComments 
            //  
            this.mnuIncludeComments.Checked = true; 
            this.mnuIncludeComments.CheckOnClick = true; 
            this.mnuIncludeComments.CheckState = System.Windows.Forms.CheckState.Checked; 
            this.mnuIncludeComments.Name = "mnuIncludeComments"; 
            this.mnuIncludeComments.Size = new System.Drawing.Size(244, 22); 
            this.mnuIncludeComments.Text = "Include comments"; 
            //  
            // mnuIncludeAutoGenerated 
            //  
            this.mnuIncludeAutoGenerated.Checked = true; 
            this.mnuIncludeAutoGenerated.CheckOnClick = true; 
            this.mnuIncludeAutoGenerated.CheckState = System.Windows.Forms.CheckState.Checked; 
            this.mnuIncludeAutoGenerated.Name = "mnuIncludeAutoGenerated"; 
            this.mnuIncludeAutoGenerated.Size = new System.Drawing.Size(244, 22); 
            this.mnuIncludeAutoGenerated.Text = "Include auto generated code"; 
            //  
            // mnuIncludeDesigner 
            //  
            this.mnuIncludeDesigner.Checked = true; 
            this.mnuIncludeDesigner.CheckOnClick = true; 
            this.mnuIncludeDesigner.CheckState = System.Windows.Forms.CheckState.Checked; 
            this.mnuIncludeDesigner.Name = "mnuIncludeDesigner"; 
            this.mnuIncludeDesigner.Size = new System.Drawing.Size(244, 22); 
            this.mnuIncludeDesigner.Text = "Include Visual Studio designer file"; 
            //  
            // toolStrip1 
            //  
            this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { 
            this.lblFolder, 
            this.btnRecount, 
            this.btnBrowse}); 
            this.toolStrip1.Location = new System.Drawing.Point(0, 24); 
            this.toolStrip1.Name = "toolStrip1"; 
            this.toolStrip1.Size = new System.Drawing.Size(344, 25); 
            this.toolStrip1.TabIndex = 15; 
            this.toolStrip1.Text = "toolStrip1"; 
            //  
            // lblFolder 
            //  
            this.lblFolder.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text; 
            this.lblFolder.Name = "lblFolder"; 
            this.lblFolder.Overflow = System.Windows.Forms.ToolStripItemOverflow.Never; 
            this.lblFolder.Size = new System.Drawing.Size(94, 22); 
            this.lblFolder.Text = "No folder selected"; 
            //  
            // btnRecount 
            //  
            this.btnRecount.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right; 
            this.btnRecount.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text; 
            this.btnRecount.Image = ((System.Drawing.Image)(resources.GetObject("btnRecount.Image"))); 
            this.btnRecount.ImageTransparentColor = System.Drawing.Color.Magenta; 
            this.btnRecount.Name = "btnRecount"; 
            this.btnRecount.Size = new System.Drawing.Size(51, 22); 
            this.btnRecount.Text = "Recount"; 
            this.btnRecount.Click += new System.EventHandler(this.btnRecount_Click); 
            //  
            // btnBrowse 
            //  
            this.btnBrowse.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right; 
            this.btnBrowse.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text; 
            this.btnBrowse.Image = ((System.Drawing.Image)(resources.GetObject("btnBrowse.Image"))); 
            this.btnBrowse.ImageTransparentColor = System.Drawing.Color.Magenta; 
            this.btnBrowse.Name = "btnBrowse"; 
            this.btnBrowse.Size = new System.Drawing.Size(58, 22); 
            this.btnBrowse.Text = "Browse"; 
            this.btnBrowse.ButtonClick += new System.EventHandler(this.btnBrowse_ButtonClick); 
            //  
            // mnuCopyToClipboard 
            //  
            this.mnuCopyToClipboard.Name = "mnuCopyToClipboard"; 
            this.mnuCopyToClipboard.Size = new System.Drawing.Size(169, 22); 
            this.mnuCopyToClipboard.Text = "Copy to clipboard"; 
            this.mnuCopyToClipboard.Click += new System.EventHandler(this.mnuCopyToClipboard_Click); 
            //  
            // Form1 
            //  
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); 
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 
            this.ClientSize = new System.Drawing.Size(344, 309); 
            this.Controls.Add(this.toolStrip1); 
            this.Controls.Add(this.lblNoFilesFound); 
            this.Controls.Add(this.label1); 
            this.Controls.Add(this.cmbSearchPattern); 
            this.Controls.Add(this.statusStrip1); 
            this.Controls.Add(this.menuStrip1); 
            this.Controls.Add(this.chkIncludeSubfolders); 
            this.Controls.Add(this.listView1); 
            this.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 
            this.MinimumSize = new System.Drawing.Size(352, 332); 
            this.Name = "Form1"; 
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; 
            this.Text = "Source code line counter"; 
            this.statusStrip1.ResumeLayout(false); 
            this.statusStrip1.PerformLayout(); 
            this.menuStrip1.ResumeLayout(false); 
            this.menuStrip1.PerformLayout(); 
            this.toolStrip1.ResumeLayout(false); 
            this.toolStrip1.PerformLayout(); 
            this.ResumeLayout(false); 
            this.PerformLayout(); 
 
        } 
 
        #endregion 
 
        private System.Windows.Forms.FolderBrowserDialog folderBrowserDialog1; 
        private System.Windows.Forms.ListView listView1; 
        private System.Windows.Forms.ColumnHeader columnHeaderFile; 
        private System.Windows.Forms.ColumnHeader columnHeaderLines; 
        private System.Windows.Forms.CheckBox chkIncludeSubfolders; 
        private System.Windows.Forms.ColumnHeader columnHeaderDirectory; 
        private System.Windows.Forms.StatusStrip statusStrip1; 
        private System.Windows.Forms.ToolStripStatusLabel toolStripStatuslblTotal; 
        private System.Windows.Forms.ToolStripProgressBar toolStripProgressBar1; 
        private System.Windows.Forms.ToolStripStatusLabel toolStripStatuslblLines; 
        private System.Windows.Forms.ComboBox cmbSearchPattern; 
        private System.Windows.Forms.Label label1; 
        private System.Windows.Forms.Label lblNoFilesFound; 
        private System.Windows.Forms.ToolStripDropDownButton toolStripGrouping; 
        private System.Windows.Forms.ToolStripMenuItem toolStripMenuItemAdd; 
        private System.Windows.Forms.ToolStripMenuItem toolStripMenuItemClear; 
        private System.Windows.Forms.ToolStripMenuItem toolStripMenuItemTotal; 
        private System.Windows.Forms.ToolStripSeparator toolStripSeparator1; 
        private System.Windows.Forms.MenuStrip menuStrip1; 
        private System.Windows.Forms.ToolStripMenuItem mnuFile; 
        private System.Windows.Forms.ToolStripMenuItem mnuExit; 
        private System.Windows.Forms.ToolStripMenuItem mnuDirectoryOptions; 
        private System.Windows.Forms.ToolStripMenuItem mnuIncludeSubfolders; 
        private System.Windows.Forms.ToolStripMenuItem mnuSelectFolder; 
        private System.Windows.Forms.ToolStripSeparator toolStripMenuItem1; 
        private System.Windows.Forms.ToolStripMenuItem mnuFileOptions; 
        private System.Windows.Forms.ToolStripMenuItem mnuIncludeBlankLines; 
        private System.Windows.Forms.ToolStripMenuItem mnuIncludeComments; 
        private System.Windows.Forms.ToolStripMenuItem mnuIncludeAutoGenerated; 
        private System.Windows.Forms.ToolStripMenuItem mnuIncludeDesigner; 
        private System.Windows.Forms.ToolStrip toolStrip1; 
        private System.Windows.Forms.ToolStripLabel lblFolder; 
        private System.Windows.Forms.ToolStripSplitButton btnBrowse; 
        private System.Windows.Forms.ToolStripButton btnRecount; 
        private System.Windows.Forms.ToolStripMenuItem mnuCopyToClipboard; 
    } 
}