⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 form1.designer.cs

📁 本程序可以作为数据库入门的一个小程序
💻 CS
📖 第 1 页 / 共 2 页
字号:
namespace TEN
{
    partial class Form1
    {
        /// <summary>
        /// 必需的设计器变量。
        /// </summary>
        private System.ComponentModel.IContainer components = null;

        /// <summary>
        /// 清理所有正在使用的资源。
        /// </summary>
        /// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
        protected override void Dispose(bool disposing)
        {
            if (disposing && (components != null))
            {
                components.Dispose();
            }
            base.Dispose(disposing);
        }

        #region Windows 窗体设计器生成的代码

        /// <summary>
        /// 设计器支持所需的方法 - 不要
        /// 使用代码编辑器修改此方法的内容。
        /// </summary>
        private void InitializeComponent()
        {
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
            this.label1 = new System.Windows.Forms.Label();
            this.label2 = new System.Windows.Forms.Label();
            this.label3 = new System.Windows.Forms.Label();
            this.label4 = new System.Windows.Forms.Label();
            this.txtSNo = new System.Windows.Forms.TextBox();
            this.dataSet11 = new TEN.DataSet1();
            this.txtFName = new System.Windows.Forms.TextBox();
            this.txtLName = new System.Windows.Forms.TextBox();
            this.txtScore = new System.Windows.Forms.TextBox();
            this.btnmf = new System.Windows.Forms.Button();
            this.btnmp = new System.Windows.Forms.Button();
            this.btnmn = new System.Windows.Forms.Button();
            this.btnml = new System.Windows.Forms.Button();
            this.btnAdd = new System.Windows.Forms.Button();
            this.btnEdit = new System.Windows.Forms.Button();
            this.btnDelete = new System.Windows.Forms.Button();
            this.btnClose = new System.Windows.Forms.Button();
            this.btnUpdate = new System.Windows.Forms.Button();
            this.btnCancel = new System.Windows.Forms.Button();
            this.button1 = new System.Windows.Forms.Button();
            this.sqlSelectCommand1 = new System.Data.SqlClient.SqlCommand();
            this.sqlConnection1 = new System.Data.SqlClient.SqlConnection();
            this.sqlInsertCommand1 = new System.Data.SqlClient.SqlCommand();
            this.sqlUpdateCommand1 = new System.Data.SqlClient.SqlCommand();
            this.sqlDeleteCommand1 = new System.Data.SqlClient.SqlCommand();
            this.sqlDataAdapter1 = new System.Data.SqlClient.SqlDataAdapter();
            ((System.ComponentModel.ISupportInitialize)(this.dataSet11)).BeginInit();
            this.SuspendLayout();
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Location = new System.Drawing.Point(57, 36);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(29, 12);
            this.label1.TabIndex = 0;
            this.label1.Text = "学号";
            // 
            // label2
            // 
            this.label2.AutoSize = true;
            this.label2.Location = new System.Drawing.Point(57, 73);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(29, 12);
            this.label2.TabIndex = 1;
            this.label2.Text = "姓氏";
            // 
            // label3
            // 
            this.label3.AutoSize = true;
            this.label3.Location = new System.Drawing.Point(57, 112);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(29, 12);
            this.label3.TabIndex = 2;
            this.label3.Text = "名字";
            // 
            // label4
            // 
            this.label4.AutoSize = true;
            this.label4.Location = new System.Drawing.Point(57, 150);
            this.label4.Name = "label4";
            this.label4.Size = new System.Drawing.Size(29, 12);
            this.label4.TabIndex = 3;
            this.label4.Text = "成绩";
            // 
            // txtSNo
            // 
            this.txtSNo.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.dataSet11, "Student.SNO", true));
            this.txtSNo.Location = new System.Drawing.Point(139, 33);
            this.txtSNo.Name = "txtSNo";
            this.txtSNo.Size = new System.Drawing.Size(146, 21);
            this.txtSNo.TabIndex = 4;
            // 
            // dataSet11
            // 
            this.dataSet11.DataSetName = "DataSet1";
            this.dataSet11.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
            // 
            // txtFName
            // 
            this.txtFName.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.dataSet11, "Student.FirstName", true));
            this.txtFName.Location = new System.Drawing.Point(139, 70);
            this.txtFName.Name = "txtFName";
            this.txtFName.Size = new System.Drawing.Size(146, 21);
            this.txtFName.TabIndex = 5;
            // 
            // txtLName
            // 
            this.txtLName.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.dataSet11, "Student.LastName", true));
            this.txtLName.Location = new System.Drawing.Point(139, 112);
            this.txtLName.Name = "txtLName";
            this.txtLName.Size = new System.Drawing.Size(146, 21);
            this.txtLName.TabIndex = 6;
            // 
            // txtScore
            // 
            this.txtScore.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.dataSet11, "Student.Score", true));
            this.txtScore.Location = new System.Drawing.Point(139, 150);
            this.txtScore.Name = "txtScore";
            this.txtScore.Size = new System.Drawing.Size(146, 21);
            this.txtScore.TabIndex = 7;
            // 
            // btnmf
            // 
            this.btnmf.Location = new System.Drawing.Point(43, 220);
            this.btnmf.Name = "btnmf";
            this.btnmf.Size = new System.Drawing.Size(75, 23);
            this.btnmf.TabIndex = 8;
            this.btnmf.Text = "第一个";
            this.btnmf.UseVisualStyleBackColor = true;
            this.btnmf.Click += new System.EventHandler(this.btnmf_Click);
            // 
            // btnmp
            // 
            this.btnmp.Location = new System.Drawing.Point(124, 220);
            this.btnmp.Name = "btnmp";
            this.btnmp.Size = new System.Drawing.Size(75, 23);
            this.btnmp.TabIndex = 9;
            this.btnmp.Text = "前一个";
            this.btnmp.UseVisualStyleBackColor = true;
            this.btnmp.Click += new System.EventHandler(this.btnmp_Click);
            // 
            // btnmn
            // 
            this.btnmn.Location = new System.Drawing.Point(205, 220);
            this.btnmn.Name = "btnmn";
            this.btnmn.Size = new System.Drawing.Size(75, 23);
            this.btnmn.TabIndex = 10;
            this.btnmn.Text = "下一个";
            this.btnmn.UseVisualStyleBackColor = true;
            this.btnmn.Click += new System.EventHandler(this.btnmn_Click);
            // 
            // btnml
            // 
            this.btnml.Location = new System.Drawing.Point(286, 220);
            this.btnml.Name = "btnml";
            this.btnml.Size = new System.Drawing.Size(75, 23);
            this.btnml.TabIndex = 11;
            this.btnml.Text = "最后一个";
            this.btnml.UseVisualStyleBackColor = true;
            this.btnml.Click += new System.EventHandler(this.btnml_Click);
            // 
            // btnAdd
            // 
            this.btnAdd.Location = new System.Drawing.Point(43, 249);
            this.btnAdd.Name = "btnAdd";
            this.btnAdd.Size = new System.Drawing.Size(75, 23);
            this.btnAdd.TabIndex = 12;
            this.btnAdd.Text = "添加";
            this.btnAdd.UseVisualStyleBackColor = true;
            this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
            // 
            // btnEdit
            // 
            this.btnEdit.Location = new System.Drawing.Point(124, 249);
            this.btnEdit.Name = "btnEdit";
            this.btnEdit.Size = new System.Drawing.Size(75, 23);

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -