namespace StoredProcedure2 { 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.label2 = new System.Windows.Forms.Label(); this.txtMin = new System.Windows.Forms.TextBox(); this.label3 = new System.Windows.Forms.Label(); this.txtMax = new System.Windows.Forms.TextBox(); this.dataGridView1 = new System.Windows.Forms.DataGridView(); this.btnOk = new System.Windows.Forms.Button(); ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit(); this.SuspendLayout(); // // label1 // this.label1.AutoSize = true; this.label1.Font = new System.Drawing.Font("新細明體", 13.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136))); this.label1.Location = new System.Drawing.Point(163, 32); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(298, 24); this.label1.TabIndex = 0; this.label1.Text = "股票行情表成交量查詢系統"; // // label2 // this.label2.AutoSize = true; this.label2.Location = new System.Drawing.Point(31, 102); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(82, 15); this.label2.TabIndex = 2; this.label2.Text = "最低成交量"; // // txtMin // this.txtMin.Location = new System.Drawing.Point(123, 99); this.txtMin.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); this.txtMin.Name = "txtMin"; this.txtMin.Size = new System.Drawing.Size(84, 25); this.txtMin.TabIndex = 3; // // label3 // this.label3.AutoSize = true; this.label3.Location = new System.Drawing.Point(243, 105); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(82, 15); this.label3.TabIndex = 4; this.label3.Text = "最高成交量"; // // txtMax // this.txtMax.Location = new System.Drawing.Point(335, 99); this.txtMax.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); this.txtMax.Name = "txtMax"; this.txtMax.Size = new System.Drawing.Size(99, 25); this.txtMax.TabIndex = 5; // // dataGridView1 // this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize; this.dataGridView1.Location = new System.Drawing.Point(35, 159); this.dataGridView1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); this.dataGridView1.Name = "dataGridView1"; this.dataGridView1.RowTemplate.Height = 27; this.dataGridView1.Size = new System.Drawing.Size(636, 225); this.dataGridView1.TabIndex = 6; // // btnOk // this.btnOk.Location = new System.Drawing.Point(596, 102); this.btnOk.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); this.btnOk.Name = "btnOk"; this.btnOk.Size = new System.Drawing.Size(75, 28); this.btnOk.TabIndex = 7; this.btnOk.Text = "查詢"; this.btnOk.UseVisualStyleBackColor = true; this.btnOk.Click += new System.EventHandler(this.btnOk_Click); // // Form1 // this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(699, 418); this.Controls.Add(this.btnOk); this.Controls.Add(this.dataGridView1); this.Controls.Add(this.txtMax); this.Controls.Add(this.label3); this.Controls.Add(this.txtMin); this.Controls.Add(this.label2); this.Controls.Add(this.label1); this.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); this.Name = "Form1"; this.Text = "Form1"; ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit(); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.Label label1; private System.Windows.Forms.Label label2; private System.Windows.Forms.TextBox txtMin; private System.Windows.Forms.Label label3; private System.Windows.Forms.TextBox txtMax; private System.Windows.Forms.DataGridView dataGridView1; private System.Windows.Forms.Button btnOk; } }