📄 customerform.cs
字号:
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
namespace Customer_Maintenance_Project
{
/// <summary>
/// Summary description for CustomerForm.
/// </summary>
public class CustomerForm : System.Windows.Forms.Form
{
private System.Windows.Forms.Button btnSave;
private System.Windows.Forms.Button btnEdit;
private System.Windows.Forms.Button btnCancel;
private System.Windows.Forms.Label lblCarNo;
private System.Windows.Forms.Label lblName;
private System.Windows.Forms.Label lblAddress;
private System.Windows.Forms.Label lblMake;
private System.Windows.Forms.TextBox textBox1;
private System.Windows.Forms.TextBox textBox2;
private System.Windows.Forms.TextBox textBox3;
private System.Windows.Forms.TextBox textBox4;
private System.Data.SqlClient.SqlDataAdapter sqlDataAdapter1;
private System.Data.SqlClient.SqlCommand sqlSelectCommand1;
private System.Data.SqlClient.SqlCommand sqlInsertCommand1;
private System.Data.SqlClient.SqlCommand sqlUpdateCommand1;
private System.Data.SqlClient.SqlCommand sqlDeleteCommand1;
private System.Data.SqlClient.SqlConnection sqlConnection1;
private Customer_Maintenance_Project.CustomerDataSet customerDataSet1;
private System.Windows.Forms.Button btnNext;
private System.Windows.Forms.Button Exit;
private System.Windows.Forms.TextBox txtDisplayPosition;
private System.Windows.Forms.Button btnBack;
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.Container components = null;
public CustomerForm()
{
//
// Required for Windows Form Designer support
//
InitializeComponent();
//
// TODO: Add any constructor code after InitializeComponent call
//
}
/// <summary>
/// Clean up any resources being used.
/// </summary>
protected override void Dispose( bool disposing )
{
if( disposing )
{
if(components != null)
{
components.Dispose();
}
}
base.Dispose( disposing );
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.btnSave = new System.Windows.Forms.Button();
this.btnEdit = new System.Windows.Forms.Button();
this.btnCancel = new System.Windows.Forms.Button();
this.Exit = new System.Windows.Forms.Button();
this.lblCarNo = new System.Windows.Forms.Label();
this.lblName = new System.Windows.Forms.Label();
this.lblAddress = new System.Windows.Forms.Label();
this.lblMake = new System.Windows.Forms.Label();
this.textBox1 = new System.Windows.Forms.TextBox();
this.customerDataSet1 = new Customer_Maintenance_Project.CustomerDataSet();
this.textBox2 = new System.Windows.Forms.TextBox();
this.textBox3 = new System.Windows.Forms.TextBox();
this.textBox4 = new System.Windows.Forms.TextBox();
this.sqlDataAdapter1 = new System.Data.SqlClient.SqlDataAdapter();
this.sqlDeleteCommand1 = new System.Data.SqlClient.SqlCommand();
this.sqlConnection1 = new System.Data.SqlClient.SqlConnection();
this.sqlInsertCommand1 = new System.Data.SqlClient.SqlCommand();
this.sqlSelectCommand1 = new System.Data.SqlClient.SqlCommand();
this.sqlUpdateCommand1 = new System.Data.SqlClient.SqlCommand();
this.btnNext = new System.Windows.Forms.Button();
this.txtDisplayPosition = new System.Windows.Forms.TextBox();
this.btnBack = new System.Windows.Forms.Button();
((System.ComponentModel.ISupportInitialize)(this.customerDataSet1)).BeginInit();
this.SuspendLayout();
//
// btnSave
//
this.btnSave.Location = new System.Drawing.Point(88, 160);
this.btnSave.Name = "btnSave";
this.btnSave.TabIndex = 0;
this.btnSave.Text = "&Save";
this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
//
// btnEdit
//
this.btnEdit.Location = new System.Drawing.Point(224, 160);
this.btnEdit.Name = "btnEdit";
this.btnEdit.TabIndex = 1;
this.btnEdit.Text = "&Edit";
this.btnEdit.Click += new System.EventHandler(this.btnEdit_Click);
//
// btnCancel
//
this.btnCancel.Location = new System.Drawing.Point(376, 160);
this.btnCancel.Name = "btnCancel";
this.btnCancel.TabIndex = 2;
this.btnCancel.Text = "&Cancel";
this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
//
// Exit
//
this.Exit.Location = new System.Drawing.Point(504, 160);
this.Exit.Name = "Exit";
this.Exit.TabIndex = 3;
this.Exit.Text = "E&xit";
this.Exit.Click += new System.EventHandler(this.Exit_Click);
//
// lblCarNo
//
this.lblCarNo.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
this.lblCarNo.Location = new System.Drawing.Point(48, 32);
this.lblCarNo.Name = "lblCarNo";
this.lblCarNo.Size = new System.Drawing.Size(48, 23);
this.lblCarNo.TabIndex = 4;
this.lblCarNo.Text = "Car No.";
//
// lblName
//
this.lblName.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
this.lblName.Location = new System.Drawing.Point(48, 88);
this.lblName.Name = "lblName";
this.lblName.Size = new System.Drawing.Size(44, 23);
this.lblName.TabIndex = 5;
this.lblName.Text = "Name";
//
// lblAddress
//
this.lblAddress.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
this.lblAddress.Location = new System.Drawing.Point(368, 32);
this.lblAddress.Name = "lblAddress";
this.lblAddress.Size = new System.Drawing.Size(56, 23);
this.lblAddress.TabIndex = 6;
this.lblAddress.Text = "Address";
//
// lblMake
//
this.lblMake.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
this.lblMake.Location = new System.Drawing.Point(384, 88);
this.lblMake.Name = "lblMake";
this.lblMake.Size = new System.Drawing.Size(40, 23);
this.lblMake.TabIndex = 7;
this.lblMake.Text = "Make";
//
// textBox1
//
this.textBox1.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.customerDataSet1, "tblCustomer.CarNo"));
this.textBox1.Location = new System.Drawing.Point(120, 32);
this.textBox1.Name = "textBox1";
this.textBox1.Size = new System.Drawing.Size(160, 20);
this.textBox1.TabIndex = 8;
this.textBox1.Text = "";
this.textBox1.TextChanged += new System.EventHandler(this.textBox1_TextChanged);
//
// customerDataSet1
//
this.customerDataSet1.DataSetName = "CustomerDataSet";
this.customerDataSet1.Locale = new System.Globalization.CultureInfo("en-US");
this.customerDataSet1.Namespace = "http://www.tempuri.org/CustomerDataSet.xsd";
//
// textBox2
//
this.textBox2.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.customerDataSet1, "tblCustomer.Name"));
this.textBox2.Location = new System.Drawing.Point(120, 88);
this.textBox2.Name = "textBox2";
this.textBox2.Size = new System.Drawing.Size(160, 20);
this.textBox2.TabIndex = 9;
this.textBox2.Text = "";
//
// textBox3
//
this.textBox3.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.customerDataSet1, "tblCustomer.Address"));
this.textBox3.Location = new System.Drawing.Point(456, 32);
this.textBox3.Name = "textBox3";
this.textBox3.Size = new System.Drawing.Size(160, 20);
this.textBox3.TabIndex = 10;
this.textBox3.Text = "";
//
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -