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

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

?? login.cs

?? 為湖北省教委、湖北省就業(yè)指導(dǎo)中心訂做的學(xué)歷查詢系統(tǒng)
?? CS
字號(hào):
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;

namespace WindowsApplication3
{
	/// <summary>
	/// Form2 的摘要說(shuō)明。
	/// </summary>
	public class Form2 : System.Windows.Forms.Form
	{
		private System.Windows.Forms.TextBox txtName;
		private System.Windows.Forms.TextBox txtPassword;
		private System.Windows.Forms.ToolTip 提示;
		private System.ComponentModel.IContainer components;
		private System.Windows.Forms.PictureBox pictureBox1;
		private System.Windows.Forms.PictureBox pictureBox2;
		public static Admin adm;

		public Form2()
		{
			//
			// 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.components = new System.ComponentModel.Container();
			System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(Form2));
			this.txtName = new System.Windows.Forms.TextBox();
			this.txtPassword = new System.Windows.Forms.TextBox();
			this.提示 = new System.Windows.Forms.ToolTip(this.components);
			this.pictureBox1 = new System.Windows.Forms.PictureBox();
			this.pictureBox2 = new System.Windows.Forms.PictureBox();
			this.SuspendLayout();
			// 
			// txtName
			// 
			this.txtName.Location = new System.Drawing.Point(432, 208);
			this.txtName.Name = "txtName";
			this.txtName.Size = new System.Drawing.Size(112, 21);
			this.txtName.TabIndex = 0;
			this.txtName.Text = "";
			this.提示.SetToolTip(this.txtName, "請(qǐng)輸入登陸名");
			this.txtName.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtName_KeyPress);
			// 
			// txtPassword
			// 
			this.txtPassword.Location = new System.Drawing.Point(432, 240);
			this.txtPassword.Name = "txtPassword";
			this.txtPassword.PasswordChar = '*';
			this.txtPassword.Size = new System.Drawing.Size(112, 21);
			this.txtPassword.TabIndex = 1;
			this.txtPassword.Text = "";
			this.提示.SetToolTip(this.txtPassword, "請(qǐng)輸入密碼");
			this.txtPassword.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtPassword_KeyPress);
			// 
			// pictureBox1
			// 
			this.pictureBox1.Cursor = System.Windows.Forms.Cursors.Hand;
			this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
			this.pictureBox1.Location = new System.Drawing.Point(496, 280);
			this.pictureBox1.Name = "pictureBox1";
			this.pictureBox1.Size = new System.Drawing.Size(56, 26);
			this.pictureBox1.TabIndex = 4;
			this.pictureBox1.TabStop = false;
			this.pictureBox1.Click += new System.EventHandler(this.pictureBox1_Click);
			this.pictureBox1.MouseEnter += new System.EventHandler(this.pictureBox1_MouseEnter);
			this.pictureBox1.MouseLeave += new System.EventHandler(this.pictureBox1_MouseLeave);
			// 
			// pictureBox2
			// 
			this.pictureBox2.Cursor = System.Windows.Forms.Cursors.Hand;
			this.pictureBox2.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox2.Image")));
			this.pictureBox2.Location = new System.Drawing.Point(432, 280);
			this.pictureBox2.Name = "pictureBox2";
			this.pictureBox2.Size = new System.Drawing.Size(54, 23);
			this.pictureBox2.TabIndex = 5;
			this.pictureBox2.TabStop = false;
			this.pictureBox2.Click += new System.EventHandler(this.pictureBox2_Click);
			this.pictureBox2.MouseEnter += new System.EventHandler(this.pictureBox2_MouseEnter);
			this.pictureBox2.MouseLeave += new System.EventHandler(this.pictureBox2_MouseLeave);
			// 
			// Form2
			// 
			this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
			this.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("$this.BackgroundImage")));
			this.ClientSize = new System.Drawing.Size(600, 397);
			this.Controls.Add(this.pictureBox2);
			this.Controls.Add(this.pictureBox1);
			this.Controls.Add(this.txtPassword);
			this.Controls.Add(this.txtName);
			this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
			this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
			this.MaximizeBox = false;
			this.MinimizeBox = false;
			this.Name = "Form2";
			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
			this.Text = "湖北省就業(yè)指導(dǎo)中心";
			this.Closing += new System.ComponentModel.CancelEventHandler(this.Form2_Closing);
			this.SizeChanged += new System.EventHandler(this.Form2_SizeChanged);
			this.Load += new System.EventHandler(this.Form2_Load);
			this.Enter += new System.EventHandler(this.Form2_Enter);
			this.ResumeLayout(false);

		}
		#endregion

		private void Form2_Load(object sender, System.EventArgs e)
		{
		}

	

		private void Form2_Closing(object sender, System.ComponentModel.CancelEventArgs e)
		{
			if( this.DialogResult == DialogResult.OK )
			{

			}
			else
			{
				this.DialogResult = DialogResult.Cancel;
			}
		}


		private void Form2_SizeChanged(object sender, System.EventArgs e)
		{
		
		}

		private void Form2_Enter(object sender, System.EventArgs e)
		{
			txtName.Text = txtName.Text.Trim();
			txtPassword.Text = txtPassword.Text.Trim();
			adm = new Admin( txtName.Text,txtPassword.Text );
			if(adm.IsExist( ))
			{
				this.DialogResult = DialogResult.OK;
			}
			else
			{
				MessageBox.Show("用戶名不存在或密碼不正確!","登陸提示窗口",MessageBoxButtons.OK,MessageBoxIcon.Information );
			}	
		}

		private void pictureBox1_MouseEnter(object sender, System.EventArgs e)
		{
			pictureBox1.Image = Image.FromFile( "img\\button-登錄02.GIF");
		}

		private void pictureBox1_MouseLeave(object sender, System.EventArgs e)
		{
			pictureBox1.Image = Image.FromFile( "img\\button-登錄01.GIF");
		}

		private void pictureBox2_MouseEnter(object sender, System.EventArgs e)
		{
			pictureBox2.Image = Image.FromFile( "img\\button-注冊(cè)02.GIF");
		}

		private void pictureBox2_MouseLeave(object sender, System.EventArgs e)
		{
			pictureBox2.Image = Image.FromFile( "img\\button-注冊(cè)01.GIF");
		}

		private void pictureBox1_Click(object sender, System.EventArgs e)
		{
			txtName.Text = txtName.Text.Trim();
			txtPassword.Text = txtPassword.Text.Trim();
			adm = new Admin( txtName.Text,txtPassword.Text );
			if(adm.IsExist( ))
			{
				this.DialogResult = DialogResult.OK;
			}
			else
			{
				MessageBox.Show("用戶名不存在或密碼不正確!","登陸提示窗口",MessageBoxButtons.OK,MessageBoxIcon.Information );
			}
		}

		private void pictureBox2_Click(object sender, System.EventArgs e)
		{
			Register frmReg = new Register();
			frmReg.ShowDialog();
		}

		private void txtPassword_KeyPress(object sender, System.Windows.Forms.KeyPressEventArgs e)
		{
			if ( e.KeyChar == 13 )
			{
				pictureBox1_Click( sender, e );
			}
		}

		private void txtName_KeyPress(object sender, System.Windows.Forms.KeyPressEventArgs e)
		{
			if ( e.KeyChar == 13 )
			{
				pictureBox1_Click( sender, e );
			}
		}
	}
}

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美一区二区三区思思人| 中文字幕日韩一区| 91丨九色porny丨蝌蚪| 日韩影院精彩在线| 国产精品国产三级国产| 欧美一区二区在线观看| 在线免费不卡电影| av在线不卡观看免费观看| 狠狠狠色丁香婷婷综合久久五月| 亚洲一区二区三区美女| 国产精品久久777777| 日韩一区二区三区在线| 欧美日本精品一区二区三区| 一本久久精品一区二区| 丁香婷婷综合网| 久久99精品久久久久久久久久久久| 亚洲国产精品精华液网站| 亚洲欧美另类在线| 亚洲国产高清在线观看视频| 久久先锋影音av| 日韩无一区二区| 欧美一区二区三区在线| 欧美日韩一区二区三区在线看| 色综合久久久久久久久久久| 成人晚上爱看视频| 丁香一区二区三区| 国产91对白在线观看九色| 极品销魂美女一区二区三区| 另类小说色综合网站| 美国毛片一区二区三区| 日韩国产在线观看一区| 午夜欧美视频在线观看 | 亚洲柠檬福利资源导航| 中文字幕欧美激情| 国产精品网曝门| 亚洲国产成人在线| 中文字幕一区二区在线播放 | 中文字幕一区二区三| 国产精品久久久久久福利一牛影视 | 国产日韩欧美精品综合| 国产欧美一区二区精品性| 国产视频视频一区| 国产精品你懂的在线欣赏| 国产精品你懂的在线| 欧美一区二区在线看| 亚洲一区二区综合| 亚洲九九爱视频| 亚洲激情六月丁香| 亚洲中国最大av网站| 婷婷开心激情综合| 久久精品国产亚洲一区二区三区| 久久99久久99小草精品免视看| 美女mm1313爽爽久久久蜜臀| 国产自产v一区二区三区c| 国内一区二区在线| 成人h动漫精品一区二| 日本精品视频一区二区三区| 4438成人网| 久久久国产精品午夜一区ai换脸| 国产精品久久久久久久久搜平片| 亚洲天天做日日做天天谢日日欢 | 国产精品久久久久久亚洲毛片 | 精品黑人一区二区三区久久| 亚洲一二三级电影| 亚洲人被黑人高潮完整版| 亚洲小少妇裸体bbw| 另类的小说在线视频另类成人小视频在线| 黑人精品欧美一区二区蜜桃| 成人的网站免费观看| 欧美日韩日日摸| 久久婷婷久久一区二区三区| 亚洲精品成人精品456| 日本一区中文字幕| 成人app软件下载大全免费| 欧美性猛交xxxx乱大交退制版 | 色哟哟精品一区| 91精品国产综合久久精品| 欧美激情艳妇裸体舞| 亚洲成人高清在线| 国产不卡免费视频| 欧美日产国产精品| 国产精品免费久久久久| 亚洲aⅴ怡春院| 波多野结衣一区二区三区| 欧美久久久久久久久久| 一区二区中文字幕在线| 精油按摩中文字幕久久| 一本色道亚洲精品aⅴ| 久久综合久久综合九色| 亚洲自拍欧美精品| 粉嫩一区二区三区性色av| 欧美一区二区在线免费观看| 亚洲欧洲综合另类| 国产99久久久国产精品| 欧美日韩免费一区二区三区视频 | 日本欧美韩国一区三区| 92精品国产成人观看免费| 久久综合九色综合欧美就去吻| 一区二区三区中文免费| 国产精品白丝jk白祙喷水网站| 7777精品伊人久久久大香线蕉超级流畅 | 粉嫩一区二区三区性色av| 欧美一区二区三区免费在线看| 亚洲欧美在线另类| 国产精品羞羞答答xxdd| 日韩欧美国产三级电影视频| 亚洲高清免费视频| 色综合网站在线| 一区二区三区电影在线播| 国产精品综合网| 欧美成人艳星乳罩| 丝袜亚洲另类丝袜在线| 欧美专区在线观看一区| 中文字幕一区二区三区视频 | 欧美日韩性生活| 亚洲精品乱码久久久久久久久| 成人国产电影网| 久久久久国产精品免费免费搜索| 日本欧美在线观看| 欧美精品久久久久久久多人混战 | 日韩成人午夜电影| 欧美日韩国产综合草草| 一区二区日韩av| 日本高清视频一区二区| 国产精品久久久久久久久晋中 | 日日摸夜夜添夜夜添亚洲女人| 日本道免费精品一区二区三区| 国产精品久99| av亚洲精华国产精华| 国产精品久久久久四虎| 北条麻妃一区二区三区| 一色桃子久久精品亚洲| 99久久精品情趣| 中文字幕中文字幕在线一区| av一区二区三区| 亚洲欧美国产三级| 色综合天天视频在线观看| 中文字幕字幕中文在线中不卡视频| 成人伦理片在线| 国产精品久久久久久久岛一牛影视 | 免费看日韩精品| 欧美成人女星排名| 精品在线你懂的| 国产欧美日韩一区二区三区在线观看| 夫妻av一区二区| 亚洲区小说区图片区qvod| 欧美在线你懂得| 天天综合天天综合色| 日韩精品中文字幕一区二区三区| 精品一区二区三区免费| 久久婷婷色综合| 99久久精品免费| 亚洲国产成人高清精品| 欧美一卡二卡三卡| 国产精品综合在线视频| 成人免费一区二区三区在线观看| 色屁屁一区二区| 热久久一区二区| 国产欧美日韩综合精品一区二区| 91视频国产观看| 日本视频一区二区三区| 久久久久久夜精品精品免费| av在线免费不卡| 天天色综合天天| 久久精品人人做| 在线看日本不卡| 激情综合色播激情啊| 日韩美女精品在线| 7777精品伊人久久久大香线蕉完整版| 激情五月婷婷综合| 亚洲男人的天堂一区二区| 91精品国产综合久久久久久| 风间由美一区二区av101| 亚洲国产精品人人做人人爽| 亚洲精品一区在线观看| 91激情五月电影| 国产在线国偷精品产拍免费yy| 亚洲人成在线观看一区二区| 91精品在线麻豆| www.日韩av| 久久精品国产999大香线蕉| 亚洲欧洲国产日本综合| 欧美一卡二卡三卡四卡| 色综合欧美在线| 国产永久精品大片wwwapp| 一区二区三区**美女毛片| 久久久久久一级片| 欧美美女一区二区| yourporn久久国产精品| 麻豆国产精品一区二区三区| 亚洲丝袜精品丝袜在线| 精品国产乱码久久久久久浪潮 | 国产成人免费av在线| 日韩vs国产vs欧美| 亚洲六月丁香色婷婷综合久久 | 亚洲成人综合网站| 国产精品视频一二三| 精品国产一区二区亚洲人成毛片 | jlzzjlzz国产精品久久| 激情综合色综合久久综合|