📄 frmclass.cs
字号:
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
namespace prjClass
{
/// <summary>
/// frmClass 的摘要说明。
/// </summary>
public class frmClass : System.Windows.Forms.Form
{
private Class1 c = new Class1();
private ClassInfo class1 = new ClassInfo();
private System.Windows.Forms.Panel panel1;
private System.Windows.Forms.Panel panel2;
private System.Windows.Forms.DataGrid dataGrid1;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.ComboBox cboSpc;
private System.Windows.Forms.Button btnSelect;
private System.Windows.Forms.TextBox txtYear;
private System.Windows.Forms.Button btnEdit;
private System.Windows.Forms.Button btnDel;
private System.Windows.Forms.Button btnCancle;
/// <summary>
/// 必需的设计器变量。
/// </summary>
private System.ComponentModel.Container components = null;
public frmClass()
{
//
// Windows 窗体设计器支持所必需的
//
InitializeComponent();
//
// TODO: 在 InitializeComponent 调用后添加任何构造函数代码
//
}
/// <summary>
/// 清理所有正在使用的资源。
/// </summary>
protected override void Dispose( bool disposing )
{
if( disposing )
{
if(components != null)
{
components.Dispose();
}
}
base.Dispose( disposing );
}
#region Windows 窗体设计器生成的代码
/// <summary>
/// 设计器支持所需的方法 - 不要使用代码编辑器修改
/// 此方法的内容。
/// </summary>
private void InitializeComponent()
{
this.panel1 = new System.Windows.Forms.Panel();
this.cboSpc = new System.Windows.Forms.ComboBox();
this.btnSelect = new System.Windows.Forms.Button();
this.label2 = new System.Windows.Forms.Label();
this.txtYear = new System.Windows.Forms.TextBox();
this.label1 = new System.Windows.Forms.Label();
this.panel2 = new System.Windows.Forms.Panel();
this.btnCancle = new System.Windows.Forms.Button();
this.btnDel = new System.Windows.Forms.Button();
this.btnEdit = new System.Windows.Forms.Button();
this.dataGrid1 = new System.Windows.Forms.DataGrid();
this.panel1.SuspendLayout();
this.panel2.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.dataGrid1)).BeginInit();
this.SuspendLayout();
//
// panel1
//
this.panel1.Controls.Add(this.cboSpc);
this.panel1.Controls.Add(this.btnSelect);
this.panel1.Controls.Add(this.label2);
this.panel1.Controls.Add(this.txtYear);
this.panel1.Controls.Add(this.label1);
this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
this.panel1.Location = new System.Drawing.Point(0, 0);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(968, 100);
this.panel1.TabIndex = 0;
this.panel1.Paint += new System.Windows.Forms.PaintEventHandler(this.panel1_Paint);
//
// cboSpc
//
this.cboSpc.Location = new System.Drawing.Point(200, 40);
this.cboSpc.Name = "cboSpc";
this.cboSpc.Size = new System.Drawing.Size(121, 20);
this.cboSpc.TabIndex = 4;
this.cboSpc.Text = "comboBox1";
//
// btnSelect
//
this.btnSelect.Location = new System.Drawing.Point(752, 40);
this.btnSelect.Name = "btnSelect";
this.btnSelect.Size = new System.Drawing.Size(96, 23);
this.btnSelect.TabIndex = 3;
this.btnSelect.Text = "开始查询";
this.btnSelect.Click += new System.EventHandler(this.btnSelect_Click);
//
// label2
//
this.label2.Location = new System.Drawing.Point(434, 40);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(62, 23);
this.label2.TabIndex = 2;
this.label2.Text = "入学年份";
//
// txtYear
//
this.txtYear.Location = new System.Drawing.Point(496, 40);
this.txtYear.Name = "txtYear";
this.txtYear.Size = new System.Drawing.Size(100, 21);
this.txtYear.TabIndex = 1;
this.txtYear.Leave += new System.EventHandler(this.txtYear_Leave);
//
// label1
//
this.label1.Location = new System.Drawing.Point(128, 40);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(100, 23);
this.label1.TabIndex = 0;
this.label1.Text = "请选择专业";
//
// panel2
//
this.panel2.Controls.Add(this.btnCancle);
this.panel2.Controls.Add(this.btnDel);
this.panel2.Controls.Add(this.btnEdit);
this.panel2.Dock = System.Windows.Forms.DockStyle.Bottom;
this.panel2.Location = new System.Drawing.Point(0, 609);
this.panel2.Name = "panel2";
this.panel2.Size = new System.Drawing.Size(968, 100);
this.panel2.TabIndex = 1;
//
// btnCancle
//
this.btnCancle.Location = new System.Drawing.Point(640, 40);
this.btnCancle.Name = "btnCancle";
this.btnCancle.Size = new System.Drawing.Size(112, 23);
this.btnCancle.TabIndex = 6;
this.btnCancle.Text = "取消";
this.btnCancle.Click += new System.EventHandler(this.btnCancle_Click);
//
// btnDel
//
this.btnDel.Location = new System.Drawing.Point(408, 40);
this.btnDel.Name = "btnDel";
this.btnDel.Size = new System.Drawing.Size(112, 23);
this.btnDel.TabIndex = 5;
this.btnDel.Text = "删除班级信息";
this.btnDel.Click += new System.EventHandler(this.btnDel_Click);
//
// btnEdit
//
this.btnEdit.Location = new System.Drawing.Point(160, 40);
this.btnEdit.Name = "btnEdit";
this.btnEdit.Size = new System.Drawing.Size(112, 23);
this.btnEdit.TabIndex = 4;
this.btnEdit.Text = "修改班级信息";
this.btnEdit.Click += new System.EventHandler(this.btnEdit_Click);
//
// dataGrid1
//
this.dataGrid1.DataMember = "";
this.dataGrid1.Dock = System.Windows.Forms.DockStyle.Fill;
this.dataGrid1.HeaderForeColor = System.Drawing.SystemColors.ControlText;
this.dataGrid1.Location = new System.Drawing.Point(0, 100);
this.dataGrid1.Name = "dataGrid1";
this.dataGrid1.ReadOnly = true;
this.dataGrid1.Size = new System.Drawing.Size(968, 509);
this.dataGrid1.TabIndex = 2;
this.dataGrid1.CurrentCellChanged += new System.EventHandler(this.dataGrid1_CurrentCellChanged);
this.dataGrid1.GotFocus += new System.EventHandler(this.dataGrid1_GotFocus);
this.dataGrid1.Navigate += new System.Windows.Forms.NavigateEventHandler(this.dataGrid1_Navigate);
//
// frmClass
//
this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
this.ClientSize = new System.Drawing.Size(968, 709);
this.Controls.Add(this.dataGrid1);
this.Controls.Add(this.panel2);
this.Controls.Add(this.panel1);
this.Name = "frmClass";
this.Text = "班级信息浏览";
this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
this.Load += new System.EventHandler(this.frmClass_Load);
this.panel1.ResumeLayout(false);
this.panel1.PerformLayout();
this.panel2.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.dataGrid1)).EndInit();
this.ResumeLayout(false);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -