namespace Linq_to_Object1 { 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.lstScore = new System.Windows.Forms.ListBox(); this.label2 = new System.Windows.Forms.Label(); this.txtInput = new System.Windows.Forms.TextBox(); this.label3 = new System.Windows.Forms.Label(); this.btnSearch = new System.Windows.Forms.Button(); this.lblMsg = new System.Windows.Forms.Label(); this.SuspendLayout(); // // label1 // this.label1.AutoSize = true; this.label1.Location = new System.Drawing.Point(25, 20); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(89, 12); this.label1.TabIndex = 0; this.label1.Text = "分數列表如下:"; // // lstScore // this.lstScore.FormattingEnabled = true; this.lstScore.ItemHeight = 12; this.lstScore.Location = new System.Drawing.Point(27, 48); this.lstScore.Name = "lstScore"; this.lstScore.Size = new System.Drawing.Size(120, 88); this.lstScore.TabIndex = 1; // // label2 // this.label2.AutoSize = true; this.label2.Location = new System.Drawing.Point(25, 164); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(77, 12); this.label2.TabIndex = 2; this.label2.Text = "搜尋大於等於"; // // txtInput // this.txtInput.Location = new System.Drawing.Point(103, 161); this.txtInput.Name = "txtInput"; this.txtInput.Size = new System.Drawing.Size(68, 22); this.txtInput.TabIndex = 3; // // label3 // this.label3.AutoSize = true; this.label3.Location = new System.Drawing.Point(177, 164); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(29, 12); this.label3.TabIndex = 4; this.label3.Text = "分數"; // // btnSearch // this.btnSearch.Location = new System.Drawing.Point(212, 157); this.btnSearch.Name = "btnSearch"; this.btnSearch.Size = new System.Drawing.Size(75, 27); this.btnSearch.TabIndex = 5; this.btnSearch.Text = "查詢"; this.btnSearch.UseVisualStyleBackColor = true; this.btnSearch.Click += new System.EventHandler(this.btnSearch_Click); // // lblMsg // this.lblMsg.AutoSize = true; this.lblMsg.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this.lblMsg.Location = new System.Drawing.Point(25, 208); this.lblMsg.Name = "lblMsg"; this.lblMsg.Size = new System.Drawing.Size(39, 14); this.lblMsg.TabIndex = 6; this.lblMsg.Text = "lblMsg"; // // Form1 // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(306, 262); this.Controls.Add(this.lblMsg); this.Controls.Add(this.btnSearch); this.Controls.Add(this.label3); this.Controls.Add(this.txtInput); this.Controls.Add(this.label2); this.Controls.Add(this.lstScore); this.Controls.Add(this.label1); this.Name = "Form1"; this.Text = "Form1"; this.Load += new System.EventHandler(this.Form1_Load); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.Label label1; private System.Windows.Forms.ListBox lstScore; private System.Windows.Forms.Label label2; private System.Windows.Forms.TextBox txtInput; private System.Windows.Forms.Label label3; private System.Windows.Forms.Button btnSearch; private System.Windows.Forms.Label lblMsg; } }