namespace Linq_to_Object2 { partial class Form1 { /// /// 設計工具所需的變數。 /// private System.ComponentModel.IContainer components = null; /// /// 清除任何使用中的資源。 /// /// 如果應該處置 Managed 資源則為 true,否則為 false。 protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form 設計工具產生的程式碼 /// /// 此為設計工具支援所需的方法 - 請勿使用程式碼編輯器 /// 修改這個方法的內容。 /// private void InitializeComponent() { this.label1 = new System.Windows.Forms.Label(); this.txtInput = new System.Windows.Forms.TextBox(); this.btnSearch = new System.Windows.Forms.Button(); this.txtFileName = new System.Windows.Forms.TextBox(); this.SuspendLayout(); // // label1 // this.label1.AutoSize = true; this.label1.Location = new System.Drawing.Point(31, 29); this.label1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(67, 15); this.label1.TabIndex = 0; this.label1.Text = "檔案路徑"; // // txtInput // this.txtInput.Location = new System.Drawing.Point(109, 25); this.txtInput.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4); this.txtInput.Name = "txtInput"; this.txtInput.Size = new System.Drawing.Size(132, 25); this.txtInput.TabIndex = 1; // // btnSearch // this.btnSearch.Location = new System.Drawing.Point(263, 19); this.btnSearch.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4); this.btnSearch.Name = "btnSearch"; this.btnSearch.Size = new System.Drawing.Size(100, 35); this.btnSearch.TabIndex = 2; this.btnSearch.Text = "搜尋"; this.btnSearch.UseVisualStyleBackColor = true; this.btnSearch.Click += new System.EventHandler(this.btnSearch_Click); // // txtFileName // this.txtFileName.Location = new System.Drawing.Point(34, 79); this.txtFileName.Multiline = true; this.txtFileName.Name = "txtFileName"; this.txtFileName.ScrollBars = System.Windows.Forms.ScrollBars.Both; this.txtFileName.Size = new System.Drawing.Size(329, 153); this.txtFileName.TabIndex = 3; // // Form1 // this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(403, 256); this.Controls.Add(this.txtFileName); this.Controls.Add(this.btnSearch); this.Controls.Add(this.txtInput); this.Controls.Add(this.label1); this.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4); this.Name = "Form1"; this.Text = "Form1"; this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.Label label1; private System.Windows.Forms.TextBox txtInput; private System.Windows.Forms.Button btnSearch; private System.Windows.Forms.TextBox txtFileName; } }