namespace SolutionOpen.ToolWindow { partial class ChooseFile { /// /// 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.label1 = new System.Windows.Forms.Label(); this.searchTokens = new System.Windows.Forms.TextBox(); this.openButton = new System.Windows.Forms.Button(); this.cancelButton = new System.Windows.Forms.Button(); this.label2 = new System.Windows.Forms.Label(); this.numberOfMatchingFiles = new System.Windows.Forms.TextBox(); this.label3 = new System.Windows.Forms.Label(); this.matchingFiles = new System.Windows.Forms.ListView(); this.FileName = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.Path = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.displayLimit = new System.Windows.Forms.TextBox(); 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(131, 13); this.label1.TabIndex = 0; this.label1.Text = "Filename to match (regex):"; // // searchTokens // this.searchTokens.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.searchTokens.Location = new System.Drawing.Point(12, 25); this.searchTokens.Name = "searchTokens"; this.searchTokens.Size = new System.Drawing.Size(772, 20); this.searchTokens.TabIndex = 0; this.searchTokens.TextChanged += new System.EventHandler(this.searchTokens_TextChanged); this.searchTokens.KeyDown += new System.Windows.Forms.KeyEventHandler(this.searchTokens_KeyDown); // // openButton // this.openButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.openButton.Location = new System.Drawing.Point(790, 24); this.openButton.Name = "openButton"; this.openButton.Size = new System.Drawing.Size(75, 21); this.openButton.TabIndex = 3; this.openButton.Text = "Open"; this.openButton.UseVisualStyleBackColor = true; this.openButton.Click += new System.EventHandler(this.openButton_Click); // // cancelButton // this.cancelButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.cancelButton.Location = new System.Drawing.Point(790, 51); this.cancelButton.Name = "cancelButton"; this.cancelButton.Size = new System.Drawing.Size(75, 21); this.cancelButton.TabIndex = 4; this.cancelButton.Text = "Cancel"; this.cancelButton.UseVisualStyleBackColor = true; this.cancelButton.Click += new System.EventHandler(this.cancelButton_Click); // // label2 // this.label2.AutoSize = true; this.label2.Location = new System.Drawing.Point(12, 54); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(99, 13); this.label2.TabIndex = 3; this.label2.Text = "Num matching files:"; // // numberOfMatchingFiles // this.numberOfMatchingFiles.Location = new System.Drawing.Point(117, 51); this.numberOfMatchingFiles.Name = "numberOfMatchingFiles"; this.numberOfMatchingFiles.ReadOnly = true; this.numberOfMatchingFiles.Size = new System.Drawing.Size(82, 20); this.numberOfMatchingFiles.TabIndex = 9999; // // label3 // this.label3.AutoSize = true; this.label3.Location = new System.Drawing.Point(247, 53); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(64, 13); this.label3.TabIndex = 5; this.label3.Text = "Display limit:"; // // matchingFiles // this.matchingFiles.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.matchingFiles.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { this.FileName, this.Path}); this.matchingFiles.FullRowSelect = true; this.matchingFiles.GridLines = true; this.matchingFiles.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable; this.matchingFiles.HideSelection = false; this.matchingFiles.ImeMode = System.Windows.Forms.ImeMode.NoControl; this.matchingFiles.Location = new System.Drawing.Point(15, 78); this.matchingFiles.Name = "matchingFiles"; this.matchingFiles.Size = new System.Drawing.Size(850, 322); this.matchingFiles.Sorting = System.Windows.Forms.SortOrder.Ascending; this.matchingFiles.TabIndex = 1; this.matchingFiles.UseCompatibleStateImageBehavior = false; this.matchingFiles.View = System.Windows.Forms.View.Details; this.matchingFiles.DoubleClick += new System.EventHandler(this.matchingFiles_DoubleClick); this.matchingFiles.KeyDown += new System.Windows.Forms.KeyEventHandler(this.matchingFiles_KeyDown); // // FileName // this.FileName.Text = "Filename"; this.FileName.Width = 275; // // Path // this.Path.Text = "Path"; this.Path.Width = 600; // // displayLimit // this.displayLimit.Location = new System.Drawing.Point(317, 51); this.displayLimit.Name = "displayLimit"; this.displayLimit.Size = new System.Drawing.Size(100, 20); this.displayLimit.TabIndex = 2; this.displayLimit.TextChanged += new System.EventHandler(this.displayLimit_TextChanged); // // ChooseFile // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(877, 412); this.Controls.Add(this.displayLimit); this.Controls.Add(this.matchingFiles); this.Controls.Add(this.label3); this.Controls.Add(this.numberOfMatchingFiles); this.Controls.Add(this.label2); this.Controls.Add(this.cancelButton); this.Controls.Add(this.openButton); this.Controls.Add(this.searchTokens); this.Controls.Add(this.label1); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.SizableToolWindow; this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "ChooseFile"; this.ShowInTaskbar = false; this.Text = "SolutionOpen - Choose File"; this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.Label label1; private System.Windows.Forms.TextBox searchTokens; private System.Windows.Forms.Button openButton; private System.Windows.Forms.Button cancelButton; private System.Windows.Forms.Label label2; private System.Windows.Forms.TextBox numberOfMatchingFiles; private System.Windows.Forms.Label label3; private System.Windows.Forms.ListView matchingFiles; private System.Windows.Forms.ColumnHeader FileName; private System.Windows.Forms.ColumnHeader Path; private System.Windows.Forms.TextBox displayLimit; } }