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

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

?? browsestudent.cs

?? C#編寫的學籍管理系統
?? CS
?? 第 1 頁 / 共 2 頁
字號:
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 的摘要說明。
	/// </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>
		/// 必需的設計器變量。
		/// </summary>
		private System.ComponentModel.Container components = null;

		public BrowseStudent()
		{
			//
			// 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.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 = "專業";
			// 
			// 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 = "入學年份";
			// 
			// 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 = "班級";
			// 
			// 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 = "修改學生信息";
			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 = "刪除學生信息";

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲成av人片在线观看| 色综合久久天天| av在线不卡免费看| 日韩精品专区在线| 一级做a爱片久久| 国产成人精品www牛牛影视| 在线这里只有精品| 国产日韩欧美综合在线| 蜜臀av亚洲一区中文字幕| 99久久精品免费| 久久精品日韩一区二区三区| 五月天一区二区三区| 色哟哟在线观看一区二区三区| 久久欧美一区二区| 日韩电影免费在线看| 91福利视频网站| 国产精品久久免费看| 国产伦精品一区二区三区视频青涩 | 欧美丝袜丝交足nylons图片| 国产三级一区二区三区| 免费在线观看一区二区三区| 欧美在线免费观看亚洲| 伊人色综合久久天天人手人婷| 国产成人午夜精品5599| 亚洲精品在线一区二区| 久久机这里只有精品| 欧美一区二区网站| 日韩精品亚洲一区二区三区免费| 91久久精品网| 亚洲国产成人高清精品| 欧美亚洲尤物久久| 亚洲成a人片在线不卡一二三区 | 国产成人综合网站| 国产午夜精品福利| 丁香另类激情小说| 中文字幕在线一区二区三区| 成人高清免费在线播放| 国产精品免费视频观看| 99re视频这里只有精品| 日韩毛片视频在线看| 91在线观看免费视频| 亚洲欧洲日韩在线| 日本精品一级二级| 亚洲成人免费av| 欧美一区二区三区免费视频| 美国欧美日韩国产在线播放| 宅男在线国产精品| 激情小说欧美图片| 国产精品二三区| 在线观看免费一区| 视频一区二区三区中文字幕| 日韩精品一区二区三区视频播放 | 国产成人av电影在线| 国产精品久久久久久久浪潮网站| 色综合久久中文综合久久牛| 亚洲综合色噜噜狠狠| 777亚洲妇女| 国产精品99久久久久久久vr| 综合久久国产九一剧情麻豆| 欧美日韩另类一区| 久久电影网电视剧免费观看| 国产精品国产三级国产有无不卡| 色国产综合视频| 精品一区二区免费| 亚洲私人黄色宅男| 日韩手机在线导航| eeuss鲁片一区二区三区| 亚洲午夜免费视频| 亚洲精品一区二区三区99| 91亚洲男人天堂| 美女一区二区久久| 成人欧美一区二区三区| 欧美另类变人与禽xxxxx| 国产麻豆视频一区二区| 亚洲在线观看免费| 中文字幕精品一区二区三区精品| 欧美色老头old∨ideo| 国产成人亚洲综合a∨婷婷图片| 夜夜精品视频一区二区| 久久影院午夜片一区| 在线观看不卡一区| 成人黄色片在线观看| 麻豆国产91在线播放| 一区二区久久久久| 亚洲国产激情av| 欧美tickling挠脚心丨vk| 在线视频国内自拍亚洲视频| 国产精品888| 美日韩黄色大片| 亚洲va欧美va人人爽| 亚洲三级免费观看| 国产片一区二区| 欧美一区二区三区在线电影| 色综合一区二区| 国产大陆精品国产| 国产在线视频一区二区| 五月激情综合网| 亚洲线精品一区二区三区八戒| 国产精品视频第一区| 久久日一线二线三线suv| 91精品福利在线一区二区三区 | 亚洲gay无套男同| 亚洲精品日韩综合观看成人91| 久久久久亚洲蜜桃| 精品久久久久久无| 日韩欧美亚洲一区二区| 欧美福利视频一区| 欧美三级日本三级少妇99| 在线视频国内一区二区| 91在线播放网址| 91丨porny丨国产入口| 成人污污视频在线观看| 丰满少妇久久久久久久 | 久久精品久久综合| 日本成人中文字幕| 日韩1区2区3区| 麻豆91免费看| 激情欧美一区二区| 国内一区二区在线| 国产精品正在播放| 国产福利精品一区二区| 国产黄色成人av| 成人国产视频在线观看 | 国产成人av电影在线播放| 国产不卡高清在线观看视频| 国产黄色精品视频| 91亚洲国产成人精品一区二区三| 91亚洲精品久久久蜜桃| 91久久国产最好的精华液| 在线观看区一区二| 91精品在线免费观看| 日韩欧美一级二级三级| 久久精品视频网| 国产精品视频九色porn| 尤物av一区二区| 日本亚洲最大的色成网站www| 日本欧美一区二区三区乱码 | 久久久久亚洲综合| 亚洲精品高清视频在线观看| 五月天亚洲婷婷| 国产一区二区三区精品欧美日韩一区二区三区 | www激情久久| 中文字幕一区视频| 亚洲第一综合色| 黄一区二区三区| 99精品视频在线免费观看| 欧美性猛交xxxx黑人交| 日韩欧美国产综合一区| 国产精品无遮挡| 亚洲成人精品一区二区| 国产精品一区二区在线播放 | 99re亚洲国产精品| 欧美一区二区三区视频| 国产欧美日本一区视频| 亚洲成人一区二区在线观看| 国产精品99久久久久久似苏梦涵 | 亚洲国产cao| 国产99精品国产| 欧美日韩大陆一区二区| 久久久久97国产精华液好用吗| 亚洲一区二区视频在线观看| 黄色小说综合网站| 日本电影欧美片| 国产人成亚洲第一网站在线播放| 一区二区三区四区高清精品免费观看| 奇米色777欧美一区二区| 91网上在线视频| 久久网站最新地址| 亚洲综合免费观看高清完整版 | 久久在线免费观看| 五月天亚洲婷婷| 一本一本久久a久久精品综合麻豆| 欧美一区二区三级| 亚洲欧美激情小说另类| 国产精品一区二区果冻传媒| 欧美日韩国产首页| 亚洲丝袜精品丝袜在线| 国产91在线|亚洲| 日韩女优av电影| 午夜电影一区二区| 欧洲一区在线观看| 亚洲欧洲中文日韩久久av乱码| 国产精品一卡二| 久久综合九色欧美综合狠狠| 日韩高清在线电影| 欧美特级限制片免费在线观看| 亚洲图片欧美激情| 99re这里都是精品| 中文字幕高清一区| 国产成人精品影视| 国产欧美日韩中文久久| 黄页视频在线91| 久久综合色婷婷| 国内精品伊人久久久久av一坑 | 欧美在线不卡视频| 亚洲欧洲日韩av| 97久久超碰国产精品电影| 国产精品私房写真福利视频| 国产成人免费在线视频| 亚洲国产成人在线|