studenteditform.designer.cs
来自「一个不错的文档」· CS 代码 · 共 344 行 · 第 1/2 页
CS
344 行
// txtMemo
//
this.txtMemo.Location = new System.Drawing.Point(84, 181);
this.txtMemo.MaxLength = 200;
this.txtMemo.Multiline = true;
this.txtMemo.Name = "txtMemo";
this.txtMemo.Size = new System.Drawing.Size(339, 70);
this.txtMemo.TabIndex = 1;
//
// txtAddress
//
this.txtAddress.Location = new System.Drawing.Point(301, 104);
this.txtAddress.MaxLength = 50;
this.txtAddress.Name = "txtAddress";
this.txtAddress.Size = new System.Drawing.Size(122, 21);
this.txtAddress.TabIndex = 1;
//
// btnReset
//
this.btnReset.Location = new System.Drawing.Point(228, 267);
this.btnReset.Name = "btnReset";
this.btnReset.Size = new System.Drawing.Size(75, 23);
this.btnReset.TabIndex = 2;
this.btnReset.Text = "重置";
this.btnReset.UseVisualStyleBackColor = true;
this.btnReset.Click += new System.EventHandler(this.btnReset_Click);
//
// btnOK
//
this.btnOK.Location = new System.Drawing.Point(131, 267);
this.btnOK.Name = "btnOK";
this.btnOK.Size = new System.Drawing.Size(75, 23);
this.btnOK.TabIndex = 2;
this.btnOK.Text = "确定";
this.btnOK.UseVisualStyleBackColor = true;
this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
//
// btnCancel
//
this.btnCancel.Location = new System.Drawing.Point(325, 267);
this.btnCancel.Name = "btnCancel";
this.btnCancel.Size = new System.Drawing.Size(75, 23);
this.btnCancel.TabIndex = 2;
this.btnCancel.Text = "取消";
this.btnCancel.UseVisualStyleBackColor = true;
this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
//
// panel1
//
this.panel1.Controls.Add(this.rbtnWoman);
this.panel1.Controls.Add(this.rbtnMan);
this.panel1.Location = new System.Drawing.Point(84, 61);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(122, 23);
this.panel1.TabIndex = 3;
//
// rbtnWoman
//
this.rbtnWoman.AutoSize = true;
this.rbtnWoman.Location = new System.Drawing.Point(67, 5);
this.rbtnWoman.Name = "rbtnWoman";
this.rbtnWoman.Size = new System.Drawing.Size(35, 16);
this.rbtnWoman.TabIndex = 0;
this.rbtnWoman.TabStop = true;
this.rbtnWoman.Text = "女";
this.rbtnWoman.UseVisualStyleBackColor = true;
//
// rbtnMan
//
this.rbtnMan.AutoSize = true;
this.rbtnMan.Location = new System.Drawing.Point(15, 4);
this.rbtnMan.Name = "rbtnMan";
this.rbtnMan.Size = new System.Drawing.Size(35, 16);
this.rbtnMan.TabIndex = 0;
this.rbtnMan.TabStop = true;
this.rbtnMan.Text = "男";
this.rbtnMan.UseVisualStyleBackColor = true;
//
// cmbClass
//
this.cmbClass.FormattingEnabled = true;
this.cmbClass.Location = new System.Drawing.Point(301, 146);
this.cmbClass.Name = "cmbClass";
this.cmbClass.Size = new System.Drawing.Size(122, 20);
this.cmbClass.TabIndex = 1;
this.cmbClass.SelectedIndexChanged += new System.EventHandler(this.cmbClass_SelectedIndexChanged);
//
// dtpBirthday
//
this.dtpBirthday.Format = System.Windows.Forms.DateTimePickerFormat.Short;
this.dtpBirthday.Location = new System.Drawing.Point(301, 67);
this.dtpBirthday.Name = "dtpBirthday";
this.dtpBirthday.Size = new System.Drawing.Size(122, 21);
this.dtpBirthday.TabIndex = 4;
//
// dtpInDate
//
this.dtpInDate.Format = System.Windows.Forms.DateTimePickerFormat.Short;
this.dtpInDate.Location = new System.Drawing.Point(84, 140);
this.dtpInDate.Name = "dtpInDate";
this.dtpInDate.Size = new System.Drawing.Size(122, 21);
this.dtpInDate.TabIndex = 5;
//
// StudentEditForm
//
this.AcceptButton = this.btnOK;
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
this.ClientSize = new System.Drawing.Size(441, 309);
this.Controls.Add(this.dtpInDate);
this.Controls.Add(this.dtpBirthday);
this.Controls.Add(this.cmbClass);
this.Controls.Add(this.panel1);
this.Controls.Add(this.btnCancel);
this.Controls.Add(this.btnOK);
this.Controls.Add(this.btnReset);
this.Controls.Add(this.txtAddress);
this.Controls.Add(this.txtStuName);
this.Controls.Add(this.txtMemo);
this.Controls.Add(this.txtPhone);
this.Controls.Add(this.txtStuNo);
this.Controls.Add(this.label4);
this.Controls.Add(this.label3);
this.Controls.Add(this.label8);
this.Controls.Add(this.label2);
this.Controls.Add(this.label10);
this.Controls.Add(this.label9);
this.Controls.Add(this.label7);
this.Controls.Add(this.label6);
this.Controls.Add(this.label1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximizeBox = false;
this.Name = "StudentEditForm";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "学生信息管理";
this.Load += new System.EventHandler(this.StudentEditForm_Load);
this.panel1.ResumeLayout(false);
this.panel1.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.Label label4;
private System.Windows.Forms.Label label6;
private System.Windows.Forms.Label label7;
private System.Windows.Forms.Label label8;
private System.Windows.Forms.Label label9;
private System.Windows.Forms.Label label10;
private System.Windows.Forms.TextBox txtStuNo;
private System.Windows.Forms.TextBox txtStuName;
private System.Windows.Forms.TextBox txtPhone;
private System.Windows.Forms.TextBox txtMemo;
private System.Windows.Forms.TextBox txtAddress;
private System.Windows.Forms.Button btnReset;
private System.Windows.Forms.Button btnOK;
private System.Windows.Forms.Button btnCancel;
private System.Windows.Forms.Panel panel1;
private System.Windows.Forms.RadioButton rbtnWoman;
private System.Windows.Forms.RadioButton rbtnMan;
private System.Windows.Forms.ComboBox cmbClass;
private System.Windows.Forms.DateTimePicker dtpBirthday;
private System.Windows.Forms.DateTimePicker dtpInDate;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?