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

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

?? statusmanage.cs

?? 學生管理系統(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>
		/// 必需的設計器變量。
		/// </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 窗體設計器支持所必需的
			//
			InitializeComponent();

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


			//
			// TODO: 在 InitializeComponent 調用后添加任何構造函數(shù)代碼
			//
		}

		/// <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(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 = "學生調動";
			// 
			// 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 = "調到班級";
			// 
			// 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 = "調動時間";
			// 
			// 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 = "調到院系";
			// 
			// 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 = "學生調動";
			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 = "學生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 = "學生離校";
			// 
			// 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è)",
																"結業(yè)",
																"退學",
																"開除"});
			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 = "學生離校";
			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);

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产成人免费av在线| 亚洲激情自拍偷拍| 亚洲欧洲日韩av| 亚洲6080在线| 国产精品一卡二卡| 色又黄又爽网站www久久| 欧美一卡2卡三卡4卡5免费| 国产亚洲成aⅴ人片在线观看| 亚洲欧洲制服丝袜| 九九国产精品视频| 色悠悠久久综合| 欧美大片免费久久精品三p| 亚洲欧美中日韩| 毛片一区二区三区| 97久久人人超碰| 欧美不卡在线视频| 亚洲视频精选在线| 狠狠久久亚洲欧美| 欧美无乱码久久久免费午夜一区| 精品国免费一区二区三区| 亚洲激情六月丁香| 狠狠色狠狠色综合| 精品视频在线免费看| 国产女同互慰高潮91漫画| 午夜欧美在线一二页| 白白色亚洲国产精品| 5566中文字幕一区二区电影| 日韩一区有码在线| 久久se这里有精品| 欧美久久一二区| 亚洲女与黑人做爰| 国产成人精品亚洲午夜麻豆| 日韩一区二区三区视频| 亚洲欧美一区二区三区久本道91| 精品一区二区三区香蕉蜜桃| 欧美午夜精品久久久久久孕妇| 久久久www成人免费无遮挡大片| 日韩一区欧美二区| 日本韩国视频一区二区| 国产精品私人自拍| 国产资源在线一区| 欧美一卡2卡3卡4卡| 亚洲不卡在线观看| 色哟哟国产精品免费观看| 国产精品视频看| 国产精品一二一区| 欧美成人激情免费网| 日韩1区2区日韩1区2区| 欧美日韩在线播放| 亚洲午夜激情网页| 色999日韩国产欧美一区二区| 国产精品久久久久久妇女6080| 激情成人午夜视频| 精品99一区二区| 日韩精品成人一区二区三区| 欧美三级在线播放| 亚洲成人精品一区| 欧美日韩国产综合一区二区| 亚洲精品大片www| 成a人片国产精品| 国产精品国产精品国产专区不蜜| 国产91丝袜在线观看| 久久精品一区八戒影视| 国产精品99精品久久免费| 日韩欧美国产1| 久久 天天综合| 精品少妇一区二区三区在线播放 | 午夜国产精品一区| 色88888久久久久久影院按摩 | 91丨porny丨最新| 中文字幕成人av| 成人av在线资源网| 国产精品高潮久久久久无| www.日韩大片| 亚洲久草在线视频| 欧美性猛交xxxx黑人交| 一区二区三区精品在线| 欧美做爰猛烈大尺度电影无法无天| 亚洲精品中文在线观看| 在线观看日韩国产| 天堂久久一区二区三区| 337p亚洲精品色噜噜噜| 久久91精品久久久久久秒播| 久久久久久久久久久99999| 福利视频网站一区二区三区| 国产精品国产三级国产三级人妇| 91在线观看视频| 一区二区高清在线| 91精品国产丝袜白色高跟鞋| 久久精品久久综合| 国产日本欧洲亚洲| 日本久久一区二区三区| 日韩和欧美一区二区三区| 日韩欧美电影一区| 成人精品国产一区二区4080| 中文字幕亚洲区| 欧美日韩黄色影视| 国内一区二区视频| 亚洲丝袜自拍清纯另类| 欧美日韩成人在线一区| 久草这里只有精品视频| 中文字幕一区二区三区在线不卡| 91麻豆产精品久久久久久| 婷婷久久综合九色综合伊人色| 日韩欧美视频一区| 成人a免费在线看| 亚洲1区2区3区4区| 国产无人区一区二区三区| 91在线国产福利| 日韩av一区二区三区四区| 国产日韩欧美精品电影三级在线 | 五月婷婷激情综合| 精品国产sm最大网站| 成人毛片老司机大片| 亚洲国产日韩在线一区模特| 亚洲精品在线免费播放| 91丝袜呻吟高潮美腿白嫩在线观看| 午夜精品免费在线| 国产调教视频一区| 欧美日韩国产首页在线观看| 国产自产高清不卡| 亚洲尤物在线视频观看| 精品成人一区二区三区四区| 日本精品视频一区二区三区| 国产综合成人久久大片91| 一区二区三区高清在线| 久久久久久久久久久电影| 欧美三级一区二区| 成人一区在线看| 日韩高清电影一区| 亚洲色图在线播放| 久久一日本道色综合| 欧美日韩国产精选| www.爱久久.com| 麻豆成人久久精品二区三区小说| 亚洲精品久久久久久国产精华液| 日韩欧美成人一区二区| 欧美曰成人黄网| 成人精品小蝌蚪| 老司机一区二区| 亚洲电影欧美电影有声小说| 国产精品欧美久久久久无广告 | 国产一区二区中文字幕| 一区二区三区欧美久久| 久久精品男人天堂av| 欧美一区二区三区爱爱| 色综合天天性综合| 国产裸体歌舞团一区二区| 亚洲成a人v欧美综合天堂下载| 1024亚洲合集| 中文字幕欧美三区| 久久久99久久| 日韩午夜精品电影| 欧美疯狂性受xxxxx喷水图片| 99re这里只有精品首页| 国产成人综合亚洲网站| 麻豆久久久久久久| 婷婷一区二区三区| 亚洲精品成a人| 亚洲三级视频在线观看| 国产精品美女久久久久久久网站| 亚洲精品在线三区| 精品久久久久久综合日本欧美| 欧美久久久久免费| 欧美日韩国产美女| 欧美三级一区二区| 欧美亚洲动漫精品| 91久久线看在观草草青青| 99久久伊人网影院| av在线播放一区二区三区| 成人久久视频在线观看| 国产成人鲁色资源国产91色综| 国产在线精品免费| 国产一区999| 久久se这里有精品| 热久久久久久久| 日本va欧美va精品| 日韩电影一二三区| 日韩av电影免费观看高清完整版在线观看 | 亚洲成av人片在www色猫咪| 亚洲一区在线电影| 亚洲国产va精品久久久不卡综合 | 欧美一区二区在线视频| 欧美日韩国产三级| 欧美一区二区三区在线看| 制服丝袜亚洲色图| 欧美日韩国产高清一区| 欧美精选一区二区| 日韩视频在线永久播放| 精品粉嫩aⅴ一区二区三区四区| 日韩一区二区精品在线观看| 欧美一区二区三区免费大片 | 国产麻豆精品在线| 成人免费高清在线观看| 9色porny自拍视频一区二区| 99re这里只有精品6| 欧美亚洲愉拍一区二区| 欧美色老头old∨ideo| 欧美日韩性生活| 日韩三级中文字幕|