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

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

?? winnewuser.cs

?? 工資管理系統(tǒng)可以用于一個小公司的工資管理
?? CS
字號:
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;

namespace CJGL
{
	/// <summary>
	/// WinNewUser 的摘要說明。
	/// </summary>
	public class WinNewUser : System.Windows.Forms.Form
	{
		private System.Windows.Forms.Label label1;
		private System.Windows.Forms.Label label5;
		private System.Windows.Forms.Label password;
		private System.Windows.Forms.Label label6;
		private System.Windows.Forms.Label label2;
		private System.Windows.Forms.DateTimePicker borndate;
		private System.Windows.Forms.GroupBox groupBox1;
		private System.Windows.Forms.Label label3;
		public System.Windows.Forms.RadioButton maleradio;
		public System.Windows.Forms.RadioButton famleradio;
		public System.Windows.Forms.RadioButton secretradio;
		private System.Windows.Forms.Label label4;
		private System.Windows.Forms.Button btnOk;
		private System.Windows.Forms.Button btnQuit;
		private System.Windows.Forms.Label label7;
		public System.Windows.Forms.TextBox teltext;
		public System.Windows.Forms.TextBox usernametext;
		public System.Windows.Forms.TextBox stuidtext;
		public System.Windows.Forms.TextBox addresstext;
		public System.Windows.Forms.TextBox passwordtext;
		public System.Windows.Forms.TextBox majortext;
		private System.Windows.Forms.PictureBox pictureBox1;
		private System.Windows.Forms.Label label8;
		private System.Windows.Forms.Label label9;
		private System.Windows.Forms.Label label10;
		private System.Windows.Forms.Label label11;
		/// <summary>
		/// 必需的設(shè)計器變量。
		/// </summary>
		private System.ComponentModel.Container components = null;

		public WinNewUser()
		{
			//
			// Windows 窗體設(shè)計器支持所必需的
			//
			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è)計器生成的代碼
		/// <summary>
		/// 設(shè)計器支持所需的方法 - 不要使用代碼編輯器修改
		/// 此方法的內(nèi)容。
		/// </summary>
		private void InitializeComponent()
		{
			System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(WinNewUser));
			this.label1 = new System.Windows.Forms.Label();
			this.password = new System.Windows.Forms.Label();
			this.label6 = new System.Windows.Forms.Label();
			this.label2 = new System.Windows.Forms.Label();
			this.label5 = new System.Windows.Forms.Label();
			this.borndate = new System.Windows.Forms.DateTimePicker();
			this.usernametext = new System.Windows.Forms.TextBox();
			this.stuidtext = new System.Windows.Forms.TextBox();
			this.maleradio = new System.Windows.Forms.RadioButton();
			this.famleradio = new System.Windows.Forms.RadioButton();
			this.groupBox1 = new System.Windows.Forms.GroupBox();
			this.secretradio = new System.Windows.Forms.RadioButton();
			this.addresstext = new System.Windows.Forms.TextBox();
			this.label3 = new System.Windows.Forms.Label();
			this.passwordtext = new System.Windows.Forms.TextBox();
			this.label4 = new System.Windows.Forms.Label();
			this.majortext = new System.Windows.Forms.TextBox();
			this.btnOk = new System.Windows.Forms.Button();
			this.btnQuit = new System.Windows.Forms.Button();
			this.label7 = new System.Windows.Forms.Label();
			this.teltext = new System.Windows.Forms.TextBox();
			this.pictureBox1 = new System.Windows.Forms.PictureBox();
			this.label8 = new System.Windows.Forms.Label();
			this.label9 = new System.Windows.Forms.Label();
			this.label10 = new System.Windows.Forms.Label();
			this.label11 = new System.Windows.Forms.Label();
			this.groupBox1.SuspendLayout();
			this.SuspendLayout();
			// 
			// label1
			// 
			this.label1.Location = new System.Drawing.Point(64, 104);
			this.label1.Name = "label1";
			this.label1.Size = new System.Drawing.Size(56, 16);
			this.label1.TabIndex = 0;
			this.label1.Text = "用戶名";
			this.label1.Click += new System.EventHandler(this.label1_Click);
			// 
			// password
			// 
			this.password.Location = new System.Drawing.Point(32, 200);
			this.password.Name = "password";
			this.password.Size = new System.Drawing.Size(56, 24);
			this.password.TabIndex = 1;
			this.password.Text = "出生日期";
			// 
			// label6
			// 
			this.label6.Location = new System.Drawing.Point(64, 64);
			this.label6.Name = "label6";
			this.label6.Size = new System.Drawing.Size(48, 24);
			this.label6.TabIndex = 2;
			this.label6.Text = "學(xué)號";
			// 
			// label2
			// 
			this.label2.Location = new System.Drawing.Point(32, 256);
			this.label2.Name = "label2";
			this.label2.Size = new System.Drawing.Size(48, 24);
			this.label2.TabIndex = 3;
			this.label2.Text = "性別";
			// 
			// label5
			// 
			this.label5.Location = new System.Drawing.Point(56, 296);
			this.label5.Name = "label5";
			this.label5.Size = new System.Drawing.Size(48, 16);
			this.label5.TabIndex = 4;
			this.label5.Text = "地址";
			// 
			// borndate
			// 
			this.borndate.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
			this.borndate.Location = new System.Drawing.Point(160, 200);
			this.borndate.Name = "borndate";
			this.borndate.Size = new System.Drawing.Size(88, 21);
			this.borndate.TabIndex = 4;
			// 
			// usernametext
			// 
			this.usernametext.Location = new System.Drawing.Point(176, 96);
			this.usernametext.Name = "usernametext";
			this.usernametext.TabIndex = 1;
			this.usernametext.Text = "";
			// 
			// stuidtext
			// 
			this.stuidtext.Location = new System.Drawing.Point(176, 64);
			this.stuidtext.Name = "stuidtext";
			this.stuidtext.TabIndex = 0;
			this.stuidtext.Text = "";
			// 
			// maleradio
			// 
			this.maleradio.Location = new System.Drawing.Point(0, 24);
			this.maleradio.Name = "maleradio";
			this.maleradio.Size = new System.Drawing.Size(40, 16);
			this.maleradio.TabIndex = 6;
			this.maleradio.Text = "男";
			// 
			// famleradio
			// 
			this.famleradio.Location = new System.Drawing.Point(72, 24);
			this.famleradio.Name = "famleradio";
			this.famleradio.Size = new System.Drawing.Size(32, 24);
			this.famleradio.TabIndex = 7;
			this.famleradio.Text = "女";
			// 
			// groupBox1
			// 
			this.groupBox1.Controls.Add(this.secretradio);
			this.groupBox1.Controls.Add(this.famleradio);
			this.groupBox1.Controls.Add(this.maleradio);
			this.groupBox1.Location = new System.Drawing.Point(112, 224);
			this.groupBox1.Name = "groupBox1";
			this.groupBox1.Size = new System.Drawing.Size(208, 56);
			this.groupBox1.TabIndex = 5;
			this.groupBox1.TabStop = false;
			// 
			// secretradio
			// 
			this.secretradio.Location = new System.Drawing.Point(128, 24);
			this.secretradio.Name = "secretradio";
			this.secretradio.Size = new System.Drawing.Size(48, 24);
			this.secretradio.TabIndex = 8;
			this.secretradio.Text = "保密";
			// 
			// addresstext
			// 
			this.addresstext.Location = new System.Drawing.Point(176, 288);
			this.addresstext.Name = "addresstext";
			this.addresstext.Size = new System.Drawing.Size(96, 21);
			this.addresstext.TabIndex = 9;
			this.addresstext.Text = "";
			// 
			// label3
			// 
			this.label3.Location = new System.Drawing.Point(48, 128);
			this.label3.Name = "label3";
			this.label3.Size = new System.Drawing.Size(48, 24);
			this.label3.TabIndex = 13;
			this.label3.Text = "密碼";
			// 
			// passwordtext
			// 
			this.passwordtext.Location = new System.Drawing.Point(176, 128);
			this.passwordtext.Name = "passwordtext";
			this.passwordtext.PasswordChar = '*';
			this.passwordtext.TabIndex = 2;
			this.passwordtext.Text = "";
			// 
			// label4
			// 
			this.label4.Location = new System.Drawing.Point(40, 160);
			this.label4.Name = "label4";
			this.label4.Size = new System.Drawing.Size(40, 23);
			this.label4.TabIndex = 15;
			this.label4.Text = "專業(yè)";
			// 
			// majortext
			// 
			this.majortext.Location = new System.Drawing.Point(160, 160);
			this.majortext.Name = "majortext";
			this.majortext.Size = new System.Drawing.Size(72, 21);
			this.majortext.TabIndex = 3;
			this.majortext.Text = "";
			// 
			// btnOk
			// 
			this.btnOk.Location = new System.Drawing.Point(64, 368);
			this.btnOk.Name = "btnOk";
			this.btnOk.TabIndex = 11;
			this.btnOk.Text = "確定";
			this.btnOk.Click += new System.EventHandler(this.btnOk_Click);
			// 
			// btnQuit
			// 
			this.btnQuit.Location = new System.Drawing.Point(264, 368);
			this.btnQuit.Name = "btnQuit";
			this.btnQuit.TabIndex = 12;
			this.btnQuit.Text = "取消";
			this.btnQuit.Click += new System.EventHandler(this.btnQuit_Click);
			// 
			// label7
			// 
			this.label7.Location = new System.Drawing.Point(56, 328);
			this.label7.Name = "label7";
			this.label7.Size = new System.Drawing.Size(56, 24);
			this.label7.TabIndex = 19;
			this.label7.Text = "聯(lián)系電話";
			// 
			// teltext
			// 
			this.teltext.Location = new System.Drawing.Point(176, 328);
			this.teltext.Name = "teltext";
			this.teltext.Size = new System.Drawing.Size(96, 21);
			this.teltext.TabIndex = 10;
			this.teltext.Text = "";
			// 
			// pictureBox1
			// 
			this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
			this.pictureBox1.Location = new System.Drawing.Point(40, 0);
			this.pictureBox1.Name = "pictureBox1";
			this.pictureBox1.Size = new System.Drawing.Size(328, 50);
			this.pictureBox1.TabIndex = 20;
			this.pictureBox1.TabStop = false;
			// 
			// label8
			// 
			this.label8.ForeColor = System.Drawing.Color.Brown;
			this.label8.Location = new System.Drawing.Point(304, 64);
			this.label8.Name = "label8";
			this.label8.TabIndex = 21;
			this.label8.Text = "*為必填";
			// 
			// label9
			// 
			this.label9.ForeColor = System.Drawing.Color.Brown;
			this.label9.Location = new System.Drawing.Point(296, 128);
			this.label9.Name = "label9";
			this.label9.TabIndex = 22;
			this.label9.Text = "*為必填";
			// 
			// label10
			// 
			this.label10.ForeColor = System.Drawing.Color.Brown;
			this.label10.Location = new System.Drawing.Point(280, 96);
			this.label10.Name = "label10";
			this.label10.TabIndex = 23;
			this.label10.Text = "*為必填";
			// 
			// label11
			// 
			this.label11.ForeColor = System.Drawing.Color.Brown;
			this.label11.Location = new System.Drawing.Point(248, 168);
			this.label11.Name = "label11";
			this.label11.TabIndex = 24;
			this.label11.Text = "*為必填";
			// 
			// WinNewUser
			// 
			this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
			this.BackColor = System.Drawing.SystemColors.Info;
			this.ClientSize = new System.Drawing.Size(440, 445);
			this.ControlBox = false;
			this.Controls.Add(this.label11);
			this.Controls.Add(this.label10);
			this.Controls.Add(this.label9);
			this.Controls.Add(this.label8);
			this.Controls.Add(this.pictureBox1);
			this.Controls.Add(this.teltext);
			this.Controls.Add(this.label7);
			this.Controls.Add(this.btnQuit);
			this.Controls.Add(this.btnOk);
			this.Controls.Add(this.majortext);
			this.Controls.Add(this.label4);
			this.Controls.Add(this.passwordtext);
			this.Controls.Add(this.label3);
			this.Controls.Add(this.addresstext);
			this.Controls.Add(this.groupBox1);
			this.Controls.Add(this.stuidtext);
			this.Controls.Add(this.usernametext);
			this.Controls.Add(this.borndate);
			this.Controls.Add(this.label5);
			this.Controls.Add(this.label2);
			this.Controls.Add(this.label6);
			this.Controls.Add(this.password);
			this.Controls.Add(this.label1);
			this.Name = "WinNewUser";
			this.Text = "新用戶注冊";
			this.Load += new System.EventHandler(this.WinNewUser_Load);
			this.groupBox1.ResumeLayout(false);
			this.ResumeLayout(false);

		}
		#endregion

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

		private void btnOk_Click(object sender, System.EventArgs e)
		{
			string stuid="",username="",password="",sex="",tel="",address="",btime="",major="";
			    stuid=this.stuidtext.Text.Trim();
				username=this.usernametext.Text.Trim();
				password=this.passwordtext.Text.Trim();
			    if(this.maleradio.Checked)sex="男";
			   if(this.famleradio.Checked)sex="女";
			if(this.secretradio.Checked)sex= "保密";
			tel=this.teltext.Text.Trim();
			btime=this.borndate.Text.Trim();
			major=this.majortext.Text.Trim();
			address=this.addresstext.Text.Trim();
			DataAccess data=new DataAccess();
	      if(stuid!=""&&username!=""&&password!=""&&major!="")
			{
				if(data.newUser(stuid,username,sex,major,tel,address,btime,password))
				{
					MessageBox.Show("注冊成功");
					this.Close();
				}
				else 
				{
					MessageBox.Show("用戶名已經(jīng)存在");
				}
			}

		  else
			{
				MessageBox.Show("請完整輸入");
			}
		}

		private void btnQuit_Click(object sender, System.EventArgs e)
		{
			this.Close();
		}

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

		
	}
}

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚瑟在线精品视频| 久久精品夜色噜噜亚洲aⅴ| 亚洲女人的天堂| 91色婷婷久久久久合中文| 亚洲视频图片小说| 欧美精品精品一区| 国产最新精品免费| 国产精品大尺度| 欧美中文字幕久久| 人人精品人人爱| 中文字幕国产一区| 一本到高清视频免费精品| 午夜久久电影网| 久久婷婷综合激情| 91无套直看片红桃| 日本不卡高清视频| 国产欧美日韩久久| 欧美午夜宅男影院| 国内成人自拍视频| 成人免费小视频| 91精品午夜视频| 成人午夜免费视频| 视频一区视频二区中文| 国产欧美一区二区在线观看| 在线观看精品一区| 国产一区二区精品久久99| 亚洲乱码国产乱码精品精可以看| 欧美精品三级在线观看| 成人网在线免费视频| 亚洲成人高清在线| 中文一区一区三区高中清不卡| 精品视频在线免费观看| 成人免费毛片a| 日本成人在线视频网站| 成人免费小视频| 精品国产乱码久久久久久1区2区 | 秋霞国产午夜精品免费视频| 久久一区二区三区四区| 在线观看免费亚洲| 成人a免费在线看| 欧美aaaaaa午夜精品| 亚洲三级电影网站| 国产欧美一区二区精品秋霞影院| 欧美日韩一区二区三区四区五区| 国产91色综合久久免费分享| 视频一区在线视频| 一区二区三区中文字幕| 国产亚洲一区字幕| 日韩三级免费观看| 欧美专区日韩专区| 99久久综合精品| 国产一区二区三区久久悠悠色av| 亚洲电影第三页| 一区二区三区精品视频| 国产精品成人免费在线| 久久综合久久综合久久综合| 欧美精品丝袜久久久中文字幕| 91视频精品在这里| 91视频国产资源| aaa亚洲精品| 成人晚上爱看视频| 国产精品911| 国产一区二区三区在线观看免费| 日韩福利视频网| 五月婷婷综合激情| 亚洲一区二区三区视频在线播放| 亚洲色图20p| 亚洲视频免费看| 亚洲精品少妇30p| 日韩伦理av电影| 中文字幕欧美一区| 亚洲日本青草视频在线怡红院 | 国产精品成人一区二区艾草 | 成人免费在线视频| 综合在线观看色| 国产精品电影一区二区| 中文成人综合网| 日本一区二区三区四区在线视频| 国产日韩欧美综合在线| 国产欧美一区二区精品忘忧草| 国产欧美日韩精品在线| 国产三级精品三级| 中文字幕一区二区三区不卡| 亚洲欧美怡红院| 亚洲精品欧美激情| 亚洲大片一区二区三区| 日本伊人午夜精品| 国产呦萝稀缺另类资源| 成人精品免费网站| 91视频在线看| 欧美日韩国产综合一区二区| 91精品婷婷国产综合久久| 精品久久久久香蕉网| 日韩美女视频一区二区| 亚洲欧美综合在线精品| 亚洲自拍偷拍网站| 美女脱光内衣内裤视频久久网站| 久久激情综合网| 成人黄色软件下载| 欧美伊人久久久久久久久影院| 欧美挠脚心视频网站| 精品久久久久久久人人人人传媒 | 国产精品女主播在线观看| 亚洲欧美日韩国产成人精品影院 | 午夜久久电影网| 精品制服美女久久| 99精品视频在线播放观看| 欧美日韩三级在线| 久久一二三国产| 一个色妞综合视频在线观看| 蜜桃av噜噜一区| 国产河南妇女毛片精品久久久| 日本精品一区二区三区高清| 欧美一区二区视频免费观看| 国产日韩综合av| 丝袜亚洲另类欧美| 成人毛片老司机大片| 欧美人xxxx| 国产精品国产精品国产专区不片| 日韩精品一级二级| 91麻豆精品秘密| 精品国产污污免费网站入口| 一区二区视频在线| 国产成人在线色| 91精品婷婷国产综合久久性色| 国产精品免费av| 精品一区二区三区久久久| 91久久精品午夜一区二区| 久久久久亚洲蜜桃| 日产欧产美韩系列久久99| 91在线视频观看| 国产亚洲美州欧州综合国| 亚洲高清免费观看高清完整版在线观看 | 色综合久久九月婷婷色综合| 精品少妇一区二区三区在线播放 | 欧美精品高清视频| 综合色天天鬼久久鬼色| 国内精品国产成人| 67194成人在线观看| 国产精品久久久久三级| 久久爱www久久做| 欧美日韩免费高清一区色橹橹 | 欧美激情一区二区三区| 日韩av一区二区三区| 色成年激情久久综合| 国产喷白浆一区二区三区| 久久疯狂做爰流白浆xx| 欧美麻豆精品久久久久久| 亚洲另类一区二区| 成+人+亚洲+综合天堂| 精品国产91乱码一区二区三区| 婷婷综合另类小说色区| 在线免费观看视频一区| 亚洲色大成网站www久久九九| 不卡一区二区三区四区| 国产欧美久久久精品影院| 国产在线精品一区二区不卡了| 欧美大胆一级视频| 视频一区欧美精品| 欧美一区二区三区在线看| 午夜精品福利久久久| 欧美剧情电影在线观看完整版免费励志电影 | 韩国精品一区二区| 精品久久99ma| 国内精品伊人久久久久av一坑 | 成人开心网精品视频| 中文字幕成人网| 成人污污视频在线观看| 国产精品美女www爽爽爽| 成熟亚洲日本毛茸茸凸凹| 欧美极品aⅴ影院| 99久久99久久精品免费观看| 综合久久综合久久| 91蜜桃传媒精品久久久一区二区| 国产精品久久毛片av大全日韩| 99精品久久久久久| 亚洲美女一区二区三区| 在线观看亚洲精品| 日韩和欧美一区二区| 日韩午夜av电影| 国产精品77777| 18欧美乱大交hd1984| 欧美视频在线一区| 奇米色一区二区三区四区| 久久久亚洲国产美女国产盗摄 | 蜜桃91丨九色丨蝌蚪91桃色| 精品久久久久久久人人人人传媒 | 亚洲一区在线观看视频| 欧美精品电影在线播放| 激情综合五月天| 国产精品黄色在线观看| 欧美亚洲丝袜传媒另类| 日韩av一区二区在线影视| 久久久久久电影| 色综合久久88色综合天天免费| 天天色天天操综合| 国产亚洲欧美激情| 欧美三级在线看| 国产麻豆成人精品| 一区二区三区在线高清|