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

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

?? browsestudent.cs

?? C#編寫的學(xué)籍管理系統(tǒng)
?? CS
?? 第 1 頁(yè) / 共 2 頁(yè)
字號(hào):
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data.OleDb;
using System.Data;
namespace WindowsApplication1
{
	/// <summary>
	/// xsll 的摘要說(shuō)明。
	/// </summary>
	public class BrowseStudent : System.Windows.Forms.Form
	{
		private System.Windows.Forms.ComboBox comboBox1;
		private System.Windows.Forms.TextBox textBox1;
		private System.Windows.Forms.ComboBox comboBox2;
		private System.Windows.Forms.DataGrid dataGrid1;
		private System.Data.OleDb.OleDbConnection oleDbConnection1;
		private System.Windows.Forms.Label label1;
		private System.Windows.Forms.Label label2;
		private System.Windows.Forms.Label label3;
		private System.Windows.Forms.Button button1;
		private System.Windows.Forms.Button button2;
		private System.Windows.Forms.Button button3;
		/// <summary>
		/// 必需的設(shè)計(jì)器變量。
		/// </summary>
		private System.ComponentModel.Container components = null;

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

			//
			// 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è)計(jì)器生成的代碼
		/// <summary>
		/// 設(shè)計(jì)器支持所需的方法 - 不要使用代碼編輯器修改
		/// 此方法的內(nèi)容。
		/// </summary>
		private void InitializeComponent()
		{
			this.comboBox1 = new System.Windows.Forms.ComboBox();
			this.textBox1 = new System.Windows.Forms.TextBox();
			this.comboBox2 = new System.Windows.Forms.ComboBox();
			this.dataGrid1 = new System.Windows.Forms.DataGrid();
			this.oleDbConnection1 = new System.Data.OleDb.OleDbConnection();
			this.label1 = new System.Windows.Forms.Label();
			this.label2 = new System.Windows.Forms.Label();
			this.label3 = new System.Windows.Forms.Label();
			this.button1 = new System.Windows.Forms.Button();
			this.button2 = new System.Windows.Forms.Button();
			this.button3 = new System.Windows.Forms.Button();
			((System.ComponentModel.ISupportInitialize)(this.dataGrid1)).BeginInit();
			this.SuspendLayout();
			// 
			// comboBox1
			// 
			this.comboBox1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.comboBox1.Font = new System.Drawing.Font("宋體", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
			this.comboBox1.ForeColor = System.Drawing.SystemColors.ControlText;
			this.comboBox1.Location = new System.Drawing.Point(48, 8);
			this.comboBox1.Name = "comboBox1";
			this.comboBox1.Size = new System.Drawing.Size(121, 20);
			this.comboBox1.TabIndex = 0;
			this.comboBox1.SelectedIndexChanged += new System.EventHandler(this.comboBox1_SelectedIndexChanged);
			// 
			// textBox1
			// 
			this.textBox1.Font = new System.Drawing.Font("宋體", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
			this.textBox1.ForeColor = System.Drawing.SystemColors.ControlText;
			this.textBox1.Location = new System.Drawing.Point(248, 8);
			this.textBox1.Name = "textBox1";
			this.textBox1.TabIndex = 1;
			this.textBox1.Text = "";
			this.textBox1.TextChanged += new System.EventHandler(this.textBox1_TextChanged);
			this.textBox1.Leave += new System.EventHandler(this.textBox1_Leave);
			// 
			// comboBox2
			// 
			this.comboBox2.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.comboBox2.Font = new System.Drawing.Font("宋體", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
			this.comboBox2.ForeColor = System.Drawing.SystemColors.ControlText;
			this.comboBox2.Location = new System.Drawing.Point(408, 8);
			this.comboBox2.Name = "comboBox2";
			this.comboBox2.Size = new System.Drawing.Size(121, 20);
			this.comboBox2.TabIndex = 2;
			this.comboBox2.TextChanged += new System.EventHandler(this.comboBox2_TextChanged);
			this.comboBox2.SelectedIndexChanged += new System.EventHandler(this.comboBox2_SelectedIndexChanged);
			// 
			// dataGrid1
			// 
			this.dataGrid1.AllowSorting = false;
			this.dataGrid1.BackgroundColor = System.Drawing.SystemColors.Control;
			this.dataGrid1.CaptionBackColor = System.Drawing.SystemColors.ActiveCaptionText;
			this.dataGrid1.CaptionForeColor = System.Drawing.SystemColors.ActiveCaption;
			this.dataGrid1.DataMember = "";
			this.dataGrid1.Font = new System.Drawing.Font("宋體", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
			this.dataGrid1.ForeColor = System.Drawing.SystemColors.ControlText;
			this.dataGrid1.HeaderForeColor = System.Drawing.SystemColors.ControlText;
			this.dataGrid1.Location = new System.Drawing.Point(12, 40);
			this.dataGrid1.Name = "dataGrid1";
			this.dataGrid1.PreferredColumnWidth = 100;
			this.dataGrid1.PreferredRowHeight = 30;
			this.dataGrid1.ReadOnly = true;
			this.dataGrid1.Size = new System.Drawing.Size(690, 264);
			this.dataGrid1.TabIndex = 3;
			// 
			// oleDbConnection1
			// 
			this.oleDbConnection1.ConnectionString = "Data Source=xsxxdb.mdb;Jet OLEDB:Engine Type=5;Provider=Microsoft.Jet.OLEDB.4.0;";
			// 
			// label1
			// 
			this.label1.AutoSize = true;
			this.label1.Font = new System.Drawing.Font("宋體", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
			this.label1.ForeColor = System.Drawing.SystemColors.ControlText;
			this.label1.Location = new System.Drawing.Point(8, 8);
			this.label1.Name = "label1";
			this.label1.Size = new System.Drawing.Size(29, 17);
			this.label1.TabIndex = 4;
			this.label1.Text = "專業(yè)";
			// 
			// label2
			// 
			this.label2.AutoSize = true;
			this.label2.Font = new System.Drawing.Font("宋體", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
			this.label2.ForeColor = System.Drawing.SystemColors.ControlText;
			this.label2.Location = new System.Drawing.Point(184, 8);
			this.label2.Name = "label2";
			this.label2.Size = new System.Drawing.Size(54, 17);
			this.label2.TabIndex = 5;
			this.label2.Text = "入學(xué)年份";
			// 
			// label3
			// 
			this.label3.AutoSize = true;
			this.label3.Font = new System.Drawing.Font("宋體", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
			this.label3.ForeColor = System.Drawing.SystemColors.ControlText;
			this.label3.Location = new System.Drawing.Point(368, 8);
			this.label3.Name = "label3";
			this.label3.Size = new System.Drawing.Size(29, 17);
			this.label3.TabIndex = 6;
			this.label3.Text = "班級(jí)";
			// 
			// button1
			// 
			this.button1.Font = new System.Drawing.Font("宋體", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
			this.button1.ForeColor = System.Drawing.SystemColors.ControlText;
			this.button1.Location = new System.Drawing.Point(120, 311);
			this.button1.Name = "button1";
			this.button1.Size = new System.Drawing.Size(88, 23);
			this.button1.TabIndex = 7;
			this.button1.Text = "修改學(xué)生信息";
			this.button1.Click += new System.EventHandler(this.button1_Click);
			// 
			// button2
			// 
			this.button2.Font = new System.Drawing.Font("宋體", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
			this.button2.ForeColor = System.Drawing.SystemColors.ControlText;
			this.button2.Location = new System.Drawing.Point(522, 311);
			this.button2.Name = "button2";
			this.button2.Size = new System.Drawing.Size(89, 23);
			this.button2.TabIndex = 8;
			this.button2.Text = "退出";
			this.button2.Click += new System.EventHandler(this.button2_Click);
			// 
			// button3
			// 
			this.button3.Font = new System.Drawing.Font("宋體", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
			this.button3.ForeColor = System.Drawing.SystemColors.ControlText;
			this.button3.Location = new System.Drawing.Point(306, 311);
			this.button3.Name = "button3";
			this.button3.Size = new System.Drawing.Size(89, 23);
			this.button3.TabIndex = 9;
			this.button3.Text = "刪除學(xué)生信息";

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲黄色小视频| 国产精品高清亚洲| 国产一区二区精品久久91| 免费观看在线综合色| 成人黄色小视频| 亚洲国产综合色| 亚洲国产精品二十页| 欧美一区二区免费视频| 欧美色区777第一页| 国产美女一区二区三区| 国产欧美久久久精品影院| 欧美日韩国产片| 欧美日韩精品福利| 99综合影院在线| 国产高清在线精品| 风间由美中文字幕在线看视频国产欧美| 日本亚洲欧美天堂免费| 中文字幕精品在线不卡| 中文字幕欧美一区| 亚洲高清三级视频| 美女任你摸久久| 日韩国产一区二| 精品在线播放免费| 国产成人自拍网| 91视频观看免费| 欧洲生活片亚洲生活在线观看| 国产一区二区调教| 日韩欧美国产三级| 国产日韩欧美高清| 久久99精品一区二区三区三区| 欧美一区二区免费视频| 在线电影国产精品| 一区二区三区小说| 91麻豆.com| 欧美成人免费网站| 91精品国产福利在线观看| 91热门视频在线观看| 在线观看精品一区| 亚洲图片激情小说| 在线播放国产精品二区一二区四区| 亚洲综合在线第一页| 丁香天五香天堂综合| 亚洲制服欧美中文字幕中文字幕| 在线观看av一区二区| 国产999精品久久久久久绿帽| 亚洲欧洲av另类| 日韩亚洲国产中文字幕欧美| 国产精品1024| 成人一区二区视频| 欧美人动与zoxxxx乱| 成人欧美一区二区三区在线播放| 久久不见久久见免费视频7| 国产精品77777竹菊影视小说| 91精品国产欧美一区二区18| 国产精品毛片高清在线完整版| 免费在线一区观看| 日韩欧美二区三区| 亚洲chinese男男1069| 色综合中文字幕国产 | 久国产精品韩国三级视频| 国产福利一区二区三区视频在线 | 国产自产高清不卡| 色综合久久天天综合网| 亚洲天堂福利av| 91免费视频观看| 精品国产不卡一区二区三区| 中文在线一区二区 | 亚洲女女做受ⅹxx高潮| 国产三级欧美三级| 97久久超碰国产精品电影| 日韩av不卡一区二区| 久久久久久久久久看片| 国产欧美综合在线| 国产精品一线二线三线精华| 精品欧美乱码久久久久久| 日韩国产精品91| 日韩一区二区视频在线观看| 免费的成人av| 日韩欧美国产1| 丁香婷婷综合网| 亚洲香肠在线观看| 26uuu精品一区二区三区四区在线 26uuu精品一区二区在线观看 | 国产福利一区二区三区视频| 亚洲国产岛国毛片在线| 99在线视频精品| 日本午夜精品视频在线观看| 精品少妇一区二区三区日产乱码| 国产成人免费视频网站| 亚洲综合久久久| 久久久久久一级片| 欧美日韩国产在线观看| 国产成人精品综合在线观看| 亚洲三级在线免费| 精品国产一二三区| 在线一区二区三区| 97精品国产露脸对白| 婷婷综合五月天| 亚洲精品欧美综合四区| 欧美日韩国产系列| 亚欧色一区w666天堂| 欧美国产精品中文字幕| 欧美成人艳星乳罩| 一区二区三区在线看| 麻豆精品国产91久久久久久| 久久国产乱子精品免费女| 玉米视频成人免费看| 一区二区三区日韩| 日韩精品亚洲一区| 奇米影视一区二区三区| 麻豆国产欧美一区二区三区| 国产精品久久久久一区二区三区共| 中文字幕在线不卡一区| 91视频你懂的| 成人黄色软件下载| 成人av资源在线| 精品一区二区三区在线观看国产 | 日本韩国一区二区三区| 国产精品小仙女| 99精品视频在线播放观看| 国产精品99久| 激情成人综合网| 国产精品美女久久久久av爽李琼| 久久九九国产精品| 午夜精品久久久| 波多野结衣欧美| 91精品一区二区三区久久久久久| 精品国产髙清在线看国产毛片| 久久在线免费观看| 亚洲一区二区在线免费观看视频| 日韩电影在线观看网站| a级精品国产片在线观看| 欧美一区二区视频在线观看2020| 久久综合九色综合欧美98| 亚洲一区二区三区四区的 | 精品一区二区免费视频| 欧美高清视频在线高清观看mv色露露十八| 亚洲精品中文字幕在线观看| 精品一区二区久久| 国产精品一区二区免费不卡| av不卡免费在线观看| 精品久久一二三区| 日韩高清在线不卡| 悠悠色在线精品| 亚洲欧洲制服丝袜| 亚洲一区二区高清| 日韩精品亚洲专区| 欧美亚洲日本国产| 中文字幕在线不卡一区二区三区 | 日韩精品一区二区三区中文不卡 | 亚洲免费观看视频| 国产精品综合二区| 国产欧美精品国产国产专区| 美脚の诱脚舐め脚责91| 日韩一本二本av| 国产伦精品一区二区三区在线观看| 精品视频1区2区3区| 亚洲视频中文字幕| 色综合天天综合色综合av | 色狠狠一区二区| 亚洲嫩草精品久久| 欧美高清hd18日本| 国产 欧美在线| 亚洲色图制服丝袜| 欧美卡1卡2卡| 国产电影精品久久禁18| 国产精品三级久久久久三级| 色综合久久六月婷婷中文字幕| 亚洲蜜臀av乱码久久精品蜜桃| 欧美日韩亚洲丝袜制服| 经典三级在线一区| 亚洲欧美日韩国产综合| 91福利资源站| 国产精品资源在线看| 国产精品久久久久久久久搜平片 | 精品一区二区三区av| 亚洲综合免费观看高清在线观看 | 国产精品系列在线观看| 亚洲18影院在线观看| 日韩精品一级二级| 久久国产视频网| 久久99国产精品久久| 天涯成人国产亚洲精品一区av| 欧洲av在线精品| 一区二区三区精品久久久| 日韩欧美中文字幕制服| 欧美日免费三级在线| 成人avav影音| 亚洲精品在线观看网站| 免费在线观看不卡| 99视频一区二区| 欧美日韩在线亚洲一区蜜芽| 日韩精品免费专区| 精品国产乱码久久久久久夜甘婷婷 | 人人狠狠综合久久亚洲| 精品久久久久久久人人人人传媒| 国产精品资源在线| 亚洲一区二区四区蜜桃| 精品国产免费视频| 99久久国产免费看| 久久99深爱久久99精品|