namespace Linq_to_SQL_EditDB { 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.dataGridView1 = new System.Windows.Forms.DataGridView(); this.btnDel = new System.Windows.Forms.Button(); this.btnUpdate = new System.Windows.Forms.Button(); this.btnAdd = new System.Windows.Forms.Button(); this.txtSalary = new System.Windows.Forms.TextBox(); this.txtTel = new System.Windows.Forms.TextBox(); this.txtPosition = new System.Windows.Forms.TextBox(); this.txtName = new System.Windows.Forms.TextBox(); this.label4 = new System.Windows.Forms.Label(); this.label3 = new System.Windows.Forms.Label(); this.label2 = new System.Windows.Forms.Label(); this.label1 = new System.Windows.Forms.Label(); ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit(); this.SuspendLayout(); // // dataGridView1 // this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize; this.dataGridView1.Location = new System.Drawing.Point(29, 145); 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(608, 195); this.dataGridView1.TabIndex = 31; // // btnDel // this.btnDel.Location = new System.Drawing.Point(562, 91); this.btnDel.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); this.btnDel.Name = "btnDel"; this.btnDel.Size = new System.Drawing.Size(75, 28); this.btnDel.TabIndex = 30; this.btnDel.Text = "刪除"; this.btnDel.UseVisualStyleBackColor = true; this.btnDel.Click += new System.EventHandler(this.btnDel_Click); // // btnUpdate // this.btnUpdate.Location = new System.Drawing.Point(562, 58); this.btnUpdate.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); this.btnUpdate.Name = "btnUpdate"; this.btnUpdate.Size = new System.Drawing.Size(75, 28); this.btnUpdate.TabIndex = 29; this.btnUpdate.Text = "修改"; this.btnUpdate.UseVisualStyleBackColor = true; this.btnUpdate.Click += new System.EventHandler(this.btnUpdate_Click); // // btnAdd // this.btnAdd.Location = new System.Drawing.Point(562, 25); this.btnAdd.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); this.btnAdd.Name = "btnAdd"; this.btnAdd.Size = new System.Drawing.Size(75, 28); this.btnAdd.TabIndex = 28; this.btnAdd.Text = "新增"; this.btnAdd.UseVisualStyleBackColor = true; this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click); // // txtSalary // this.txtSalary.Location = new System.Drawing.Point(322, 82); this.txtSalary.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); this.txtSalary.Name = "txtSalary"; this.txtSalary.Size = new System.Drawing.Size(160, 25); this.txtSalary.TabIndex = 26; // // txtTel // this.txtTel.Location = new System.Drawing.Point(322, 31); this.txtTel.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); this.txtTel.Name = "txtTel"; this.txtTel.Size = new System.Drawing.Size(160, 25); this.txtTel.TabIndex = 24; // // txtPosition // this.txtPosition.Location = new System.Drawing.Point(69, 82); this.txtPosition.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); this.txtPosition.Name = "txtPosition"; this.txtPosition.Size = new System.Drawing.Size(152, 25); this.txtPosition.TabIndex = 22; // // txtName // this.txtName.Location = new System.Drawing.Point(69, 31); this.txtName.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); this.txtName.Name = "txtName"; this.txtName.Size = new System.Drawing.Size(152, 25); this.txtName.TabIndex = 20; // // label4 // this.label4.AutoSize = true; this.label4.Location = new System.Drawing.Point(280, 86); this.label4.Name = "label4"; this.label4.Size = new System.Drawing.Size(37, 15); this.label4.TabIndex = 27; this.label4.Text = "薪資"; // // label3 // this.label3.AutoSize = true; this.label3.Location = new System.Drawing.Point(280, 34); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(37, 15); this.label3.TabIndex = 25; this.label3.Text = "電話"; // // label2 // this.label2.AutoSize = true; this.label2.Location = new System.Drawing.Point(26, 86); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(37, 15); this.label2.TabIndex = 23; this.label2.Text = "職稱"; // // label1 // this.label1.AutoSize = true; this.label1.Location = new System.Drawing.Point(26, 34); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(37, 15); this.label1.TabIndex = 21; this.label1.Text = "姓名"; // // Form1 // this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(664, 362); this.Controls.Add(this.dataGridView1); this.Controls.Add(this.btnDel); this.Controls.Add(this.btnUpdate); this.Controls.Add(this.btnAdd); this.Controls.Add(this.txtSalary); this.Controls.Add(this.txtTel); this.Controls.Add(this.txtPosition); this.Controls.Add(this.txtName); this.Controls.Add(this.label4); this.Controls.Add(this.label3); this.Controls.Add(this.label2); this.Controls.Add(this.label1); this.Name = "Form1"; this.Text = "Form1"; this.Load += new System.EventHandler(this.Form1_Load); ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit(); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.DataGridView dataGridView1; private System.Windows.Forms.Button btnDel; private System.Windows.Forms.Button btnUpdate; private System.Windows.Forms.Button btnAdd; private System.Windows.Forms.TextBox txtSalary; private System.Windows.Forms.TextBox txtTel; private System.Windows.Forms.TextBox txtPosition; private System.Windows.Forms.TextBox txtName; private System.Windows.Forms.Label label4; private System.Windows.Forms.Label label3; private System.Windows.Forms.Label label2; private System.Windows.Forms.Label label1; } }