亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? class.cs

?? 學生管理系統
?? CS
?? 第 1 頁 / 共 2 頁
字號:
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;
using System.Data.SqlClient;
using StudentManage.DataLevel;

namespace StudentManage.UILevel
{
	/// <summary>
	/// Class 的摘要說明。
	/// </summary>
	public class Class : System.Windows.Forms.Form
	{
		private System.Windows.Forms.GroupBox groupBox2;
		private System.Windows.Forms.TextBox textClaName;
		private System.Windows.Forms.Label label3;
		private System.Windows.Forms.Label label2;
		private System.Windows.Forms.Label label1;
		private System.Windows.Forms.TextBox textClaID;
		private System.Windows.Forms.GroupBox groupBox1;
		private System.Windows.Forms.Button btnModify;
		private System.Windows.Forms.Button btnApply;
		private System.Windows.Forms.Button btnAdd;
		private System.Windows.Forms.Button btnExit;
		private System.Windows.Forms.Button btnDelete;
		private System.Windows.Forms.Button btnCancel;
		private System.Windows.Forms.DataGrid dataGrid1;
		private System.Windows.Forms.DataGridTableStyle dataGridTableStyle1;
		private System.Windows.Forms.DataGridTextBoxColumn dataGridTextBoxColumn1;
		private System.Windows.Forms.DataGridTextBoxColumn dataGridTextBoxColumn2;
		private System.Windows.Forms.DataGridTextBoxColumn dataGridTextBoxColumn3;
		private System.Windows.Forms.DataGridTextBoxColumn dataGridTextBoxColumn4;
		private System.Windows.Forms.Label label4;
		private System.Windows.Forms.TextBox textStuNum;

		private SqlConnection conn1=null;
		private SqlDataAdapter sqlDataAdapter1=null;
		private DataSet DataSetDep=new DataSet("Class");
		private SqlCommand  Command1=null;
		private SqlDataReader DataReader1=null;
		private string selectStr=null;
		private string commandStr=null;
		private System.Windows.Forms.ComboBox comboDep;
		private System.Windows.Forms.Button CancelAll;		
		/// <summary>
		/// 必需的設計器變量。
		/// </summary>
		private System.ComponentModel.Container components = null;

		public Class()
		{
			//
			// Windows 窗體設計器支持所必需的
			//
			InitializeComponent();

			this.conn1=new SqlConnection(DataLevel.Connection.ConnString);
			this.selectStr="select * from Class";			
			this.Command1=new SqlCommand();			
			this.Command1.Connection=this.conn1;
			this.sqlDataAdapter1=new SqlDataAdapter(this.selectStr,this.conn1);
			//
			// 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()
		{
			System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(Class));
			this.groupBox2 = new System.Windows.Forms.GroupBox();
			this.comboDep = new System.Windows.Forms.ComboBox();
			this.textStuNum = new System.Windows.Forms.TextBox();
			this.label4 = new System.Windows.Forms.Label();
			this.textClaName = new System.Windows.Forms.TextBox();
			this.label3 = new System.Windows.Forms.Label();
			this.label2 = new System.Windows.Forms.Label();
			this.label1 = new System.Windows.Forms.Label();
			this.textClaID = new System.Windows.Forms.TextBox();
			this.groupBox1 = new System.Windows.Forms.GroupBox();
			this.btnModify = new System.Windows.Forms.Button();
			this.btnApply = new System.Windows.Forms.Button();
			this.btnAdd = new System.Windows.Forms.Button();
			this.btnExit = new System.Windows.Forms.Button();
			this.btnDelete = new System.Windows.Forms.Button();
			this.btnCancel = new System.Windows.Forms.Button();
			this.dataGrid1 = new System.Windows.Forms.DataGrid();
			this.dataGridTableStyle1 = new System.Windows.Forms.DataGridTableStyle();
			this.dataGridTextBoxColumn1 = new System.Windows.Forms.DataGridTextBoxColumn();
			this.dataGridTextBoxColumn2 = new System.Windows.Forms.DataGridTextBoxColumn();
			this.dataGridTextBoxColumn3 = new System.Windows.Forms.DataGridTextBoxColumn();
			this.dataGridTextBoxColumn4 = new System.Windows.Forms.DataGridTextBoxColumn();
			this.CancelAll = new System.Windows.Forms.Button();
			this.groupBox2.SuspendLayout();
			this.groupBox1.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.dataGrid1)).BeginInit();
			this.SuspendLayout();
			// 
			// groupBox2
			// 
			this.groupBox2.Controls.Add(this.comboDep);
			this.groupBox2.Controls.Add(this.textStuNum);
			this.groupBox2.Controls.Add(this.label4);
			this.groupBox2.Controls.Add(this.textClaName);
			this.groupBox2.Controls.Add(this.label3);
			this.groupBox2.Controls.Add(this.label2);
			this.groupBox2.Controls.Add(this.label1);
			this.groupBox2.Controls.Add(this.textClaID);
			this.groupBox2.Location = new System.Drawing.Point(16, 16);
			this.groupBox2.Name = "groupBox2";
			this.groupBox2.Size = new System.Drawing.Size(440, 96);
			this.groupBox2.TabIndex = 4;
			this.groupBox2.TabStop = false;
			// 
			// comboDep
			// 
			this.comboDep.Location = new System.Drawing.Point(272, 56);
			this.comboDep.Name = "comboDep";
			this.comboDep.Size = new System.Drawing.Size(152, 20);
			this.comboDep.TabIndex = 8;
			// 
			// textStuNum
			// 
			this.textStuNum.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this.textStuNum.Location = new System.Drawing.Point(72, 56);
			this.textStuNum.Name = "textStuNum";
			this.textStuNum.Size = new System.Drawing.Size(72, 21);
			this.textStuNum.TabIndex = 7;
			this.textStuNum.Text = "";
			// 
			// label4
			// 
			this.label4.Location = new System.Drawing.Point(8, 56);
			this.label4.Name = "label4";
			this.label4.Size = new System.Drawing.Size(56, 23);
			this.label4.TabIndex = 6;
			this.label4.Text = "學生人數";
			// 
			// textClaName
			// 
			this.textClaName.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this.textClaName.Location = new System.Drawing.Point(272, 24);
			this.textClaName.Name = "textClaName";
			this.textClaName.Size = new System.Drawing.Size(152, 21);
			this.textClaName.TabIndex = 5;
			this.textClaName.Text = "";
			// 
			// label3
			// 
			this.label3.Location = new System.Drawing.Point(200, 56);
			this.label3.Name = "label3";
			this.label3.Size = new System.Drawing.Size(56, 23);
			this.label3.TabIndex = 3;
			this.label3.Text = "院系名稱";
			// 
			// label2
			// 
			this.label2.Location = new System.Drawing.Point(200, 24);
			this.label2.Name = "label2";
			this.label2.Size = new System.Drawing.Size(56, 23);
			this.label2.TabIndex = 2;
			this.label2.Text = "班級名稱";
			// 
			// label1
			// 
			this.label1.Location = new System.Drawing.Point(8, 31);
			this.label1.Name = "label1";
			this.label1.Size = new System.Drawing.Size(56, 23);
			this.label1.TabIndex = 1;
			this.label1.Text = "班級代碼";
			// 
			// textClaID
			// 
			this.textClaID.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this.textClaID.Location = new System.Drawing.Point(72, 24);
			this.textClaID.Name = "textClaID";
			this.textClaID.Size = new System.Drawing.Size(104, 21);
			this.textClaID.TabIndex = 0;
			this.textClaID.Text = "";
			// 
			// groupBox1
			// 
			this.groupBox1.Controls.Add(this.CancelAll);
			this.groupBox1.Controls.Add(this.btnModify);
			this.groupBox1.Controls.Add(this.btnApply);
			this.groupBox1.Controls.Add(this.btnAdd);
			this.groupBox1.Controls.Add(this.btnExit);
			this.groupBox1.Controls.Add(this.btnDelete);
			this.groupBox1.Controls.Add(this.btnCancel);
			this.groupBox1.Location = new System.Drawing.Point(16, 128);
			this.groupBox1.Name = "groupBox1";
			this.groupBox1.Size = new System.Drawing.Size(472, 56);
			this.groupBox1.TabIndex = 3;
			this.groupBox1.TabStop = false;
			// 
			// btnModify
			// 
			this.btnModify.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this.btnModify.Image = ((System.Drawing.Image)(resources.GetObject("btnModify.Image")));
			this.btnModify.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
			this.btnModify.Location = new System.Drawing.Point(88, 24);
			this.btnModify.Name = "btnModify";
			this.btnModify.Size = new System.Drawing.Size(56, 24);
			this.btnModify.TabIndex = 105;
			this.btnModify.Text = "修改";
			this.btnModify.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			this.btnModify.Click += new System.EventHandler(this.btnModify_Click);
			// 
			// btnApply
			// 
			this.btnApply.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this.btnApply.Image = ((System.Drawing.Image)(resources.GetObject("btnApply.Image")));
			this.btnApply.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
			this.btnApply.Location = new System.Drawing.Point(336, 24);
			this.btnApply.Name = "btnApply";
			this.btnApply.Size = new System.Drawing.Size(56, 24);
			this.btnApply.TabIndex = 102;
			this.btnApply.Text = "確定";
			this.btnApply.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			this.btnApply.Click += new System.EventHandler(this.btnApply_Click);
			// 
			// btnAdd
			// 
			this.btnAdd.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this.btnAdd.Image = ((System.Drawing.Image)(resources.GetObject("btnAdd.Image")));
			this.btnAdd.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
			this.btnAdd.Location = new System.Drawing.Point(24, 24);
			this.btnAdd.Name = "btnAdd";
			this.btnAdd.Size = new System.Drawing.Size(56, 24);
			this.btnAdd.TabIndex = 103;
			this.btnAdd.Text = "添加";
			this.btnAdd.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
			// 
			// btnExit
			// 
			this.btnExit.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this.btnExit.Image = ((System.Drawing.Image)(resources.GetObject("btnExit.Image")));
			this.btnExit.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
			this.btnExit.Location = new System.Drawing.Point(400, 24);
			this.btnExit.Name = "btnExit";
			this.btnExit.Size = new System.Drawing.Size(56, 24);
			this.btnExit.TabIndex = 100;
			this.btnExit.Text = "退出";
			this.btnExit.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			this.btnExit.Click += new System.EventHandler(this.btnExit_Click);
			// 
			// btnDelete
			// 
			this.btnDelete.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this.btnDelete.Image = ((System.Drawing.Image)(resources.GetObject("btnDelete.Image")));
			this.btnDelete.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
			this.btnDelete.Location = new System.Drawing.Point(152, 24);
			this.btnDelete.Name = "btnDelete";
			this.btnDelete.Size = new System.Drawing.Size(48, 24);
			this.btnDelete.TabIndex = 104;
			this.btnDelete.Text = "刪除";
			this.btnDelete.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			this.btnDelete.Click += new System.EventHandler(this.btnDelete_Click);
			// 
			// btnCancel

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
成人欧美一区二区三区黑人麻豆| 中文字幕不卡在线播放| 色综合一区二区三区| 国产很黄免费观看久久| 国产一区在线观看视频| 国产成人综合在线播放| 国产91丝袜在线播放| 国产成人午夜精品影院观看视频 | www成人在线观看| 欧美精品一区二区蜜臀亚洲| 欧美成人精精品一区二区频| 337p日本欧洲亚洲大胆精品| 久久久精品黄色| 国产午夜精品美女毛片视频| 26uuuu精品一区二区| 国产精品电影一区二区三区| 亚洲人吸女人奶水| 亚洲a一区二区| 久久电影网站中文字幕| 国产激情视频一区二区在线观看| eeuss国产一区二区三区| 91美女视频网站| 制服视频三区第一页精品| 精品免费视频.| 成人欧美一区二区三区黑人麻豆| 亚洲国产aⅴ天堂久久| 久久99精品久久久久婷婷| 国产一区二区不卡| 日本高清免费不卡视频| 91麻豆精品国产91久久久更新时间 | 欧美一区二区不卡视频| 国产香蕉久久精品综合网| 中文字幕高清不卡| 丝袜诱惑亚洲看片| 成人污污视频在线观看| 精品视频一区三区九区| 精品免费视频.| 亚洲一区二区中文在线| 国产福利一区二区三区| 欧美日韩黄色一区二区| 国产欧美一二三区| 日韩二区三区四区| 91在线观看视频| 精品人伦一区二区色婷婷| 一区二区免费视频| 国产高清不卡一区| 日韩午夜精品视频| 一区二区三区日韩| 成人黄页毛片网站| 日韩午夜在线影院| 亚洲成av人片在线观看无码| 成人av午夜电影| 久久久亚洲欧洲日产国码αv| 亚洲电影激情视频网站| 91蜜桃在线免费视频| 久久久五月婷婷| 久久福利资源站| 88在线观看91蜜桃国自产| 亚洲免费毛片网站| 成人午夜视频免费看| 久久女同精品一区二区| 日本午夜精品一区二区三区电影 | 亚洲va欧美va人人爽午夜| 成人妖精视频yjsp地址| 国产亚洲一区二区在线观看| 日韩精品色哟哟| 制服丝袜中文字幕亚洲| 亚洲成a人v欧美综合天堂| 在线免费观看日本一区| 亚洲激情在线播放| 91久久精品网| 夜夜精品视频一区二区| 一本一道波多野结衣一区二区| 国产精品免费久久| 不卡一区二区三区四区| 国产精品久久久久久久久快鸭| 国产成人鲁色资源国产91色综| 久久久五月婷婷| 国产福利一区在线| 国产精品区一区二区三| 懂色av噜噜一区二区三区av| 日本一区二区久久| 91在线视频18| 亚洲一区二区精品视频| 在线播放91灌醉迷j高跟美女 | 欧美日韩国产在线观看| 一区二区三区日韩在线观看| 欧美日韩国产另类一区| 免费的成人av| 久久久精品蜜桃| 91片黄在线观看| 婷婷综合在线观看| 久久综合999| 91亚洲精品久久久蜜桃| 亚洲在线观看免费视频| 欧美一二三区在线观看| 高清在线不卡av| 亚洲精品免费在线| 欧美一级欧美一级在线播放| 久久99国产精品麻豆| 亚洲图片另类小说| 欧美欧美欧美欧美首页| 国产一区二区三区香蕉| 亚洲欧美日韩在线播放| 欧美一级xxx| 91视频观看免费| 久久黄色级2电影| 综合久久久久久| 欧美r级电影在线观看| 99视频国产精品| 久久se这里有精品| 亚洲色图欧洲色图婷婷| 91精品国产乱码久久蜜臀| 国产成人免费视频网站高清观看视频| 亚洲欧美日韩久久| 久久蜜桃av一区二区天堂| 在线一区二区观看| 国产一区二区福利| 亚洲国产精品一区二区www在线| 欧美成人福利视频| 欧美亚洲一区三区| 国产成人精品免费一区二区| 偷拍亚洲欧洲综合| 亚洲欧洲无码一区二区三区| 91精品国产全国免费观看| 91在线观看成人| 国产精品18久久久久久vr| 日韩国产高清在线| 亚洲在线观看免费视频| 国产精品久久久久久妇女6080| 欧美一级爆毛片| 精品视频一区三区九区| 91免费版在线看| 成人午夜精品一区二区三区| 国内外精品视频| 日本成人在线不卡视频| 亚洲国产视频一区| 国产精品久久国产精麻豆99网站| 久久久精品国产免大香伊| 日韩精品一区二| 日韩欧美一级片| 日韩丝袜情趣美女图片| 制服丝袜中文字幕亚洲| 777亚洲妇女| 91精品国产品国语在线不卡| 欧美区在线观看| 69堂国产成人免费视频| 91超碰这里只有精品国产| 欧美在线视频不卡| 欧美色爱综合网| 欧美剧情片在线观看| 欧美日韩卡一卡二| 717成人午夜免费福利电影| 欧美日韩国产天堂| 欧美日本精品一区二区三区| 欧美日韩激情在线| 91精品国产91久久久久久最新毛片 | 欧美日韩亚洲综合在线| 欧美特级限制片免费在线观看| 欧美视频一区在线| 欧美一区二区三区婷婷月色 | 久草热8精品视频在线观看| 免费观看日韩av| 久久99国产精品尤物| 国模冰冰炮一区二区| 福利视频网站一区二区三区| av电影在线观看不卡| 欧美综合亚洲图片综合区| 欧美日韩的一区二区| 日韩精品一区二区三区swag| 国产欧美日韩另类视频免费观看| 欧美激情综合五月色丁香小说| 国产拍揄自揄精品视频麻豆| 亚洲美女视频在线观看| 婷婷国产v国产偷v亚洲高清| 另类综合日韩欧美亚洲| 国产成人av电影在线观看| 97精品国产97久久久久久久久久久久 | 亚洲图片激情小说| 性做久久久久久| 精东粉嫩av免费一区二区三区| 国产精品资源在线观看| 在线免费观看日本一区| 日韩免费视频一区| 成人欧美一区二区三区白人| 亚洲一区二区三区四区的| 国产一区中文字幕| 欧美日韩综合一区| 中文字幕欧美日韩一区| 日韩二区三区四区| 99热精品一区二区| 日韩欧美一二区| 一区二区三区在线影院| 国产精品一区二区视频| 欧美中文字幕一区| 欧美激情中文字幕一区二区| 午夜电影网一区| 91色porny在线视频| 久久久电影一区二区三区| 亚洲.国产.中文慕字在线|