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

📄 formsqlcommand.designer.cs

📁 csharp课本的源代码
💻 CS
字号:
namespace SqlCommandExample
{
    partial class FormSqlCommand
    {
        /// <summary>
        /// Required designer variable.
        /// </summary>
        private System.ComponentModel.IContainer components = null;

        /// <summary>
        /// Clean up any resources being used.
        /// </summary>
        /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
        protected override void Dispose(bool disposing)
        {
            if (disposing && (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.buttonaddGrade = new System.Windows.Forms.Button();
            this.buttonShowMyTable1 = new System.Windows.Forms.Button();
            this.listBox1 = new System.Windows.Forms.ListBox();
            this.SuspendLayout();
            // 
            // buttonaddGrade
            // 
            this.buttonaddGrade.Location = new System.Drawing.Point(12, 188);
            this.buttonaddGrade.Name = "buttonaddGrade";
            this.buttonaddGrade.Size = new System.Drawing.Size(121, 34);
            this.buttonaddGrade.TabIndex = 0;
            this.buttonaddGrade.Text = "将MyTable2中张三玉的成绩增加10分";
            this.buttonaddGrade.UseVisualStyleBackColor = true;
            this.buttonaddGrade.Click += new System.EventHandler(this.buttonaddGrade_Click);
            // 
            // buttonShowMyTable1
            // 
            this.buttonShowMyTable1.Location = new System.Drawing.Point(159, 188);
            this.buttonShowMyTable1.Name = "buttonShowMyTable1";
            this.buttonShowMyTable1.Size = new System.Drawing.Size(111, 34);
            this.buttonShowMyTable1.TabIndex = 1;
            this.buttonShowMyTable1.Text = "显示MyTable1";
            this.buttonShowMyTable1.UseVisualStyleBackColor = true;
            this.buttonShowMyTable1.Click += new System.EventHandler(this.buttonShowMyTable1_Click);
            // 
            // listBox1
            // 
            this.listBox1.FormattingEnabled = true;
            this.listBox1.ItemHeight = 12;
            this.listBox1.Location = new System.Drawing.Point(12, 37);
            this.listBox1.Name = "listBox1";
            this.listBox1.Size = new System.Drawing.Size(248, 124);
            this.listBox1.TabIndex = 2;
            // 
            // FormSqlCommand
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(292, 266);
            this.Controls.Add(this.listBox1);
            this.Controls.Add(this.buttonShowMyTable1);
            this.Controls.Add(this.buttonaddGrade);
            this.Name = "FormSqlCommand";
            this.Text = "Form1";
            this.ResumeLayout(false);

        }

        #endregion

        private System.Windows.Forms.Button buttonaddGrade;
        private System.Windows.Forms.Button buttonShowMyTable1;
        private System.Windows.Forms.ListBox listBox1;
    }
}

⌨️ 快捷键说明

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