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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? statusmanage.cs

?? 學(xué)生管理系統(tǒng)
?? 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;
using StudentManage.BussinessRule;

namespace StudentManage.UILevel
{
	/// <summary>
	/// StatusManage 的摘要說明。
	/// </summary>
	public class StatusManage : System.Windows.Forms.Form
	{
		private System.Windows.Forms.GroupBox groupBox10;
		private System.Windows.Forms.Label label17;
		private System.Windows.Forms.Label label23;
		private System.Windows.Forms.GroupBox groupBox9;
		private System.Windows.Forms.GroupBox groupBox7;
		private System.Windows.Forms.Label label6;
		private System.Windows.Forms.Label label8;
		/// <summary>
		/// 必需的設(shè)計器變量。
		/// </summary>
		private System.ComponentModel.Container components = null;

		private string originDep;
		private string originCla;		
		
		private System.Windows.Forms.ComboBox comboClass;
		private System.Windows.Forms.ComboBox comboDepartment;
		private System.Windows.Forms.Button btnApply;
		


		private string selectStr;
		private SqlConnection Connection1=null;
		private SqlCommand  Command1=null;
		private SqlDataReader DataReader1=null;
		private SqlDataAdapter dataAdapter1=null;								
		
		private System.Windows.Forms.Button btnExit;
		private System.Windows.Forms.Label label1;
		private System.Windows.Forms.Button button2;
		private System.Windows.Forms.GroupBox groupBox1;
		private System.Windows.Forms.Label label2;
		private System.Windows.Forms.Label label3;
		private System.Windows.Forms.Label lblClass;
		private System.Windows.Forms.Label lblDepartment;
		private System.Windows.Forms.Label label16;
		private System.Windows.Forms.Label label14;
		private System.Windows.Forms.Label label12;
		private System.Windows.Forms.Label label11;
		private System.Windows.Forms.PictureBox pictureBox1;
		private System.Windows.Forms.Label label9;
		private System.Windows.Forms.Label label7;
		private System.Windows.Forms.Label label4;
		private System.Windows.Forms.Label label5;
		private System.Windows.Forms.Label label19;
		private System.Windows.Forms.TextBox textID;
		private System.Windows.Forms.Label lblStuName;
		private System.Windows.Forms.Label lblSex;
		private System.Windows.Forms.Label lblNativePlace;
		private System.Windows.Forms.Label lblInDate;
		private System.Windows.Forms.Label lblNation;
		private System.Windows.Forms.Label lblAge;
		private System.Windows.Forms.Label lblStatus;
		private System.Windows.Forms.DateTimePicker dateTimePicker2;
		private System.Windows.Forms.DateTimePicker dateTimePicker1;
		private System.Windows.Forms.ComboBox comboLeaveType;				
		private string commandStr;
		private System.Windows.Forms.Button btnStuMove;
		private System.Windows.Forms.Button btnStuLeave;				

		BussinessRule.StatusManage statusManage=new BussinessRule.StatusManage();
				

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

			this.selectStr="select * from Student";
			this.Connection1=new SqlConnection(DataLevel.Connection.ConnString);
			this.Command1=new SqlCommand();		
			this.Command1.Connection=this.Connection1;						
			
			


			//
			// TODO: 在 InitializeComponent 調(diào)用后添加任何構(gòu)造函數(shù)代碼
			//
		}

		/// <summary>
		/// 清理所有正在使用的資源。
		/// </summary>
		protected override void Dispose( bool disposing )
		{
			if( disposing )
			{
				if(components != null)
				{
					components.Dispose();
				}
			}
			base.Dispose( disposing );
		}

		#region Windows 窗體設(shè)計器生成的代碼
		/// <summary>
		/// 設(shè)計器支持所需的方法 - 不要使用代碼編輯器修改
		/// 此方法的內(nèi)容。
		/// </summary>
		private void InitializeComponent()
		{
			System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(StatusManage));
			this.groupBox10 = new System.Windows.Forms.GroupBox();
			this.label1 = new System.Windows.Forms.Label();
			this.label17 = new System.Windows.Forms.Label();
			this.dateTimePicker2 = new System.Windows.Forms.DateTimePicker();
			this.label23 = new System.Windows.Forms.Label();
			this.btnStuMove = new System.Windows.Forms.Button();
			this.comboClass = new System.Windows.Forms.ComboBox();
			this.comboDepartment = new System.Windows.Forms.ComboBox();
			this.groupBox9 = new System.Windows.Forms.GroupBox();
			this.textID = new System.Windows.Forms.TextBox();
			this.label19 = new System.Windows.Forms.Label();
			this.btnApply = new System.Windows.Forms.Button();
			this.groupBox7 = new System.Windows.Forms.GroupBox();
			this.label6 = new System.Windows.Forms.Label();
			this.dateTimePicker1 = new System.Windows.Forms.DateTimePicker();
			this.label8 = new System.Windows.Forms.Label();
			this.comboLeaveType = new System.Windows.Forms.ComboBox();
			this.btnStuLeave = new System.Windows.Forms.Button();
			this.btnExit = new System.Windows.Forms.Button();
			this.button2 = new System.Windows.Forms.Button();
			this.groupBox1 = new System.Windows.Forms.GroupBox();
			this.lblStatus = new System.Windows.Forms.Label();
			this.lblAge = new System.Windows.Forms.Label();
			this.lblNation = new System.Windows.Forms.Label();
			this.lblInDate = new System.Windows.Forms.Label();
			this.lblNativePlace = new System.Windows.Forms.Label();
			this.lblSex = new System.Windows.Forms.Label();
			this.lblStuName = new System.Windows.Forms.Label();
			this.label2 = new System.Windows.Forms.Label();
			this.label3 = new System.Windows.Forms.Label();
			this.lblClass = new System.Windows.Forms.Label();
			this.lblDepartment = new System.Windows.Forms.Label();
			this.label16 = new System.Windows.Forms.Label();
			this.label14 = new System.Windows.Forms.Label();
			this.label12 = new System.Windows.Forms.Label();
			this.label11 = new System.Windows.Forms.Label();
			this.pictureBox1 = new System.Windows.Forms.PictureBox();
			this.label9 = new System.Windows.Forms.Label();
			this.label7 = new System.Windows.Forms.Label();
			this.label4 = new System.Windows.Forms.Label();
			this.label5 = new System.Windows.Forms.Label();
			this.groupBox10.SuspendLayout();
			this.groupBox9.SuspendLayout();
			this.groupBox7.SuspendLayout();
			this.groupBox1.SuspendLayout();
			this.SuspendLayout();
			// 
			// groupBox10
			// 
			this.groupBox10.Controls.Add(this.label1);
			this.groupBox10.Controls.Add(this.label17);
			this.groupBox10.Controls.Add(this.dateTimePicker2);
			this.groupBox10.Controls.Add(this.label23);
			this.groupBox10.Controls.Add(this.btnStuMove);
			this.groupBox10.Controls.Add(this.comboClass);
			this.groupBox10.Controls.Add(this.comboDepartment);
			this.groupBox10.Location = new System.Drawing.Point(440, 176);
			this.groupBox10.Name = "groupBox10";
			this.groupBox10.Size = new System.Drawing.Size(248, 192);
			this.groupBox10.TabIndex = 120;
			this.groupBox10.TabStop = false;
			this.groupBox10.Text = "學(xué)生調(diào)動";
			// 
			// label1
			// 
			this.label1.Location = new System.Drawing.Point(8, 56);
			this.label1.Name = "label1";
			this.label1.Size = new System.Drawing.Size(56, 23);
			this.label1.TabIndex = 120;
			this.label1.Text = "調(diào)到班級";
			// 
			// label17
			// 
			this.label17.Location = new System.Drawing.Point(8, 88);
			this.label17.Name = "label17";
			this.label17.Size = new System.Drawing.Size(56, 23);
			this.label17.TabIndex = 113;
			this.label17.Text = "調(diào)動時間";
			// 
			// dateTimePicker2
			// 
			this.dateTimePicker2.CustomFormat = "";
			this.dateTimePicker2.Format = System.Windows.Forms.DateTimePickerFormat.Short;
			this.dateTimePicker2.Location = new System.Drawing.Point(72, 88);
			this.dateTimePicker2.Name = "dateTimePicker2";
			this.dateTimePicker2.Size = new System.Drawing.Size(120, 21);
			this.dateTimePicker2.TabIndex = 112;
			// 
			// label23
			// 
			this.label23.Location = new System.Drawing.Point(8, 24);
			this.label23.Name = "label23";
			this.label23.Size = new System.Drawing.Size(56, 23);
			this.label23.TabIndex = 111;
			this.label23.Text = "調(diào)到院系";
			// 
			// btnStuMove
			// 
			this.btnStuMove.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this.btnStuMove.Image = ((System.Drawing.Image)(resources.GetObject("btnStuMove.Image")));
			this.btnStuMove.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
			this.btnStuMove.Location = new System.Drawing.Point(96, 136);
			this.btnStuMove.Name = "btnStuMove";
			this.btnStuMove.Size = new System.Drawing.Size(80, 24);
			this.btnStuMove.TabIndex = 115;
			this.btnStuMove.Text = "學(xué)生調(diào)動";
			this.btnStuMove.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			this.btnStuMove.Click += new System.EventHandler(this.btnStuMove_Click);
			// 
			// comboClass
			// 
			this.comboClass.Location = new System.Drawing.Point(72, 56);
			this.comboClass.Name = "comboClass";
			this.comboClass.Size = new System.Drawing.Size(120, 20);
			this.comboClass.TabIndex = 118;
			// 
			// comboDepartment
			// 
			this.comboDepartment.Location = new System.Drawing.Point(72, 24);
			this.comboDepartment.Name = "comboDepartment";
			this.comboDepartment.Size = new System.Drawing.Size(120, 20);
			this.comboDepartment.TabIndex = 117;
			this.comboDepartment.SelectedIndexChanged += new System.EventHandler(this.comboDepartment_SelectedIndexChanged);
			// 
			// groupBox9
			// 
			this.groupBox9.Controls.Add(this.textID);
			this.groupBox9.Controls.Add(this.label19);
			this.groupBox9.Controls.Add(this.btnApply);
			this.groupBox9.Location = new System.Drawing.Point(16, 24);
			this.groupBox9.Name = "groupBox9";
			this.groupBox9.Size = new System.Drawing.Size(360, 53);
			this.groupBox9.TabIndex = 119;
			this.groupBox9.TabStop = false;
			// 
			// textID
			// 
			this.textID.Location = new System.Drawing.Point(88, 16);
			this.textID.Name = "textID";
			this.textID.Size = new System.Drawing.Size(80, 21);
			this.textID.TabIndex = 124;
			this.textID.Text = "";
			// 
			// label19
			// 
			this.label19.Location = new System.Drawing.Point(24, 19);
			this.label19.Name = "label19";
			this.label19.Size = new System.Drawing.Size(48, 23);
			this.label19.TabIndex = 123;
			this.label19.Text = "學(xué)生ID";
			// 
			// 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(208, 16);
			this.btnApply.Name = "btnApply";
			this.btnApply.Size = new System.Drawing.Size(56, 24);
			this.btnApply.TabIndex = 103;
			this.btnApply.Text = "確認";
			this.btnApply.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			this.btnApply.Click += new System.EventHandler(this.btnApply_Click);
			// 
			// groupBox7
			// 
			this.groupBox7.Controls.Add(this.label6);
			this.groupBox7.Controls.Add(this.dateTimePicker1);
			this.groupBox7.Controls.Add(this.label8);
			this.groupBox7.Controls.Add(this.comboLeaveType);
			this.groupBox7.Controls.Add(this.btnStuLeave);
			this.groupBox7.Location = new System.Drawing.Point(440, 24);
			this.groupBox7.Name = "groupBox7";
			this.groupBox7.Size = new System.Drawing.Size(248, 128);
			this.groupBox7.TabIndex = 118;
			this.groupBox7.TabStop = false;
			this.groupBox7.Text = "學(xué)生離校";
			// 
			// label6
			// 
			this.label6.Location = new System.Drawing.Point(40, 48);
			this.label6.Name = "label6";
			this.label6.Size = new System.Drawing.Size(56, 23);
			this.label6.TabIndex = 113;
			this.label6.Text = "離校時間";
			// 
			// dateTimePicker1
			// 
			this.dateTimePicker1.CustomFormat = "";
			this.dateTimePicker1.Format = System.Windows.Forms.DateTimePickerFormat.Short;
			this.dateTimePicker1.Location = new System.Drawing.Point(104, 48);
			this.dateTimePicker1.Name = "dateTimePicker1";
			this.dateTimePicker1.Size = new System.Drawing.Size(88, 21);
			this.dateTimePicker1.TabIndex = 112;
			// 
			// label8
			// 
			this.label8.Location = new System.Drawing.Point(40, 16);
			this.label8.Name = "label8";
			this.label8.Size = new System.Drawing.Size(56, 23);
			this.label8.TabIndex = 111;
			this.label8.Text = "離校種類";
			// 
			// comboLeaveType
			// 
			this.comboLeaveType.ForeColor = System.Drawing.SystemColors.Desktop;
			this.comboLeaveType.Items.AddRange(new object[] {
																"畢業(yè)",
																"結(jié)業(yè)",
																"退學(xué)",
																"開除"});
			this.comboLeaveType.Location = new System.Drawing.Point(104, 16);
			this.comboLeaveType.Name = "comboLeaveType";
			this.comboLeaveType.Size = new System.Drawing.Size(88, 20);
			this.comboLeaveType.TabIndex = 109;
			// 
			// btnStuLeave
			// 
			this.btnStuLeave.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this.btnStuLeave.Image = ((System.Drawing.Image)(resources.GetObject("btnStuLeave.Image")));
			this.btnStuLeave.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
			this.btnStuLeave.Location = new System.Drawing.Point(88, 88);
			this.btnStuLeave.Name = "btnStuLeave";
			this.btnStuLeave.Size = new System.Drawing.Size(72, 24);
			this.btnStuLeave.TabIndex = 97;
			this.btnStuLeave.Text = "學(xué)生離校";
			this.btnStuLeave.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			this.btnStuLeave.Click += new System.EventHandler(this.btnStuLeave_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(528, 480);
			this.btnExit.Name = "btnExit";
			this.btnExit.Size = new System.Drawing.Size(56, 24);
			this.btnExit.TabIndex = 122;
			this.btnExit.Text = "退出";
			this.btnExit.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			this.btnExit.Click += new System.EventHandler(this.btnExit_Click);
			// 
			// button2
			// 
			this.button2.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this.button2.Image = ((System.Drawing.Image)(resources.GetObject("button2.Image")));
			this.button2.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
			this.button2.Location = new System.Drawing.Point(528, 440);
			this.button2.Name = "button2";
			this.button2.Size = new System.Drawing.Size(56, 24);
			this.button2.TabIndex = 123;
			this.button2.Text = "保存";
			this.button2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// groupBox1
			// 
			this.groupBox1.Controls.Add(this.lblStatus);
			this.groupBox1.Controls.Add(this.lblAge);
			this.groupBox1.Controls.Add(this.lblNation);
			this.groupBox1.Controls.Add(this.lblInDate);
			this.groupBox1.Controls.Add(this.lblNativePlace);
			this.groupBox1.Controls.Add(this.lblSex);
			this.groupBox1.Controls.Add(this.lblStuName);
			this.groupBox1.Controls.Add(this.label2);
			this.groupBox1.Controls.Add(this.label3);

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
久久久91精品国产一区二区精品| 精一区二区三区| 亚洲视频精选在线| 中文字幕av免费专区久久| 国产亚洲欧美一区在线观看| 久久久久九九视频| 中文字幕欧美区| 中文字幕二三区不卡| 国产精品久久久久四虎| 亚洲天堂中文字幕| 亚洲综合一区二区| 亚洲成人福利片| 免费看日韩精品| 国产一区二区不卡| 成人永久免费视频| 色94色欧美sute亚洲13| 欧美丝袜自拍制服另类| 欧美福利视频一区| 精品国产乱码久久久久久图片| 精品国产乱码久久久久久浪潮| 国产喷白浆一区二区三区| 国产精品久久久久国产精品日日| 亚洲色图欧洲色图婷婷| 五月婷婷欧美视频| 狠狠色丁香九九婷婷综合五月| 国产成人午夜片在线观看高清观看| 成人少妇影院yyyy| 欧美综合在线视频| 日韩免费观看高清完整版| 欧美激情一区在线观看| 亚洲综合丝袜美腿| 免费看日韩a级影片| 国产成人av影院| 色伊人久久综合中文字幕| 欧美精品视频www在线观看| 26uuu欧美| 一区二区三区在线免费播放| 免费成人性网站| 国产a区久久久| 欧美老肥妇做.爰bbww| 久久久精品国产免费观看同学| 亚洲欧美日韩成人高清在线一区| 日本亚洲一区二区| 成人网在线免费视频| 欧美另类高清zo欧美| 国产精品网站一区| 日韩电影在线观看一区| 丁香婷婷综合激情五月色| 欧美日韩综合在线| 日本一区二区成人在线| 日本欧美大码aⅴ在线播放| 国产精品一区专区| 精品视频一区二区三区免费| 欧美精品一区二区久久婷婷| 樱桃国产成人精品视频| 九九热在线视频观看这里只有精品| 99久久国产综合精品女不卡| 日韩欧美久久一区| 亚洲一区在线电影| 高清国产午夜精品久久久久久| 在线综合视频播放| 亚洲视频每日更新| 国产成人鲁色资源国产91色综 | 北岛玲一区二区三区四区| 欧美高清hd18日本| 亚洲精品写真福利| 国产精品影视在线观看| 欧美一级在线观看| 亚洲黄色在线视频| 成人激情动漫在线观看| 精品理论电影在线观看| 亚洲18色成人| 在线观看视频欧美| 国产精品美女久久久久av爽李琼| 久久99精品国产麻豆婷婷| 欧美日韩午夜影院| 亚洲女爱视频在线| av日韩在线网站| 久久久精品综合| 久久成人免费网| 4438x成人网最大色成网站| 一区二区三区自拍| 99久久777色| 久久精品亚洲一区二区三区浴池| 青青草成人在线观看| 欧美三级电影精品| 一区二区三区国产豹纹内裤在线| 成人高清在线视频| 欧美国产日韩a欧美在线观看| 韩国视频一区二区| 日韩亚洲欧美在线观看| 天涯成人国产亚洲精品一区av| 在线看国产一区| 亚洲精品乱码久久久久久黑人 | 欧美色成人综合| 亚洲欧美激情小说另类| 99久久精品久久久久久清纯| 国产女同性恋一区二区| 国产精品一区二区视频| 久久蜜桃av一区精品变态类天堂| 韩国女主播一区| 久久久综合网站| 国产一区二三区好的| 国产亚洲综合在线| 粉嫩一区二区三区在线看| 国产午夜精品一区二区三区嫩草| 国产高清在线精品| 亚洲国产高清不卡| 91丨九色丨尤物| 亚洲精品欧美专区| 欧美日韩极品在线观看一区| 亚洲第一av色| 91精品国产色综合久久不卡电影| 天天操天天色综合| 日韩一区国产二区欧美三区| 久草精品在线观看| 日本一区二区三区免费乱视频| 国产91清纯白嫩初高中在线观看| 国产精品网站一区| 在线视频国内自拍亚洲视频| 午夜欧美大尺度福利影院在线看| 91精品国产综合久久福利 | 91国偷自产一区二区开放时间| 夜夜嗨av一区二区三区四季av| 欧美群妇大交群中文字幕| 奇米精品一区二区三区在线观看| 精品美女被调教视频大全网站| 国产精品亚洲成人| 亚洲精品美国一| 日韩一区二区免费高清| 丁香婷婷综合激情五月色| 一区二区三区精品在线观看| 制服丝袜亚洲网站| 国产精品伊人色| 一区二区日韩av| 精品国产精品一区二区夜夜嗨| 成人av午夜电影| 日韩国产高清影视| 国产精品人妖ts系列视频| 欧美性生活影院| 国产精品77777竹菊影视小说| 亚洲激情男女视频| 日韩精品一区二区三区蜜臀| 成人丝袜高跟foot| 日韩福利电影在线| 中文字幕的久久| 欧美日韩第一区日日骚| 国产精品一区二区久久不卡| 亚洲一区av在线| 久久久久综合网| 欧美久久高跟鞋激| 成人自拍视频在线| 日日噜噜夜夜狠狠视频欧美人| 久久久久国产精品麻豆ai换脸| 欧美专区亚洲专区| 国产剧情一区二区三区| 亚洲一级不卡视频| 日本一区二区三区国色天香 | 欧美sm极限捆绑bd| 在线影院国内精品| 国产一区二区福利视频| 亚洲综合成人在线视频| 国产日韩三级在线| 欧美乱妇一区二区三区不卡视频| 成人短视频下载| 久久成人久久鬼色| 一级中文字幕一区二区| 国产亚洲欧美日韩在线一区| 欧美久久久影院| 色婷婷精品大在线视频| 国产高清久久久| 久久精品国产99国产| 天天综合色天天综合色h| 中文字幕一区不卡| 国产三级精品三级| 精品少妇一区二区三区视频免付费| 欧美性色aⅴ视频一区日韩精品| 成人午夜电影网站| 国产尤物一区二区在线| 日韩电影一区二区三区| 亚洲一区视频在线| 亚洲特级片在线| 日本一区二区三区免费乱视频 | 一区二区三区在线视频观看 | 国产传媒久久文化传媒| 麻豆久久久久久久| 日本中文字幕一区二区有限公司| 洋洋av久久久久久久一区| 亚洲图片你懂的| 中文字幕一区二区在线播放| 国产欧美1区2区3区| 久久久精品2019中文字幕之3| 欧美刺激午夜性久久久久久久| 欧美日韩一区二区三区不卡| 色综合色狠狠天天综合色| av高清久久久| 色悠悠亚洲一区二区| 91在线看国产| 色综合天天综合网天天狠天天| av亚洲精华国产精华|