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

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

?? logincontrol.cs

?? JAVA實現的RSA公鑰加密方法
?? CS
?? 第 1 頁 / 共 2 頁
字號:
using System;
using System.Drawing;
using System.ComponentModel;
using System.Security.Cryptography;
using System.Text;
using System.Windows.Forms;
using System.Collections;

namespace DJD.Security
{
	[ToolboxBitmap(typeof(Bitmap))]
	public class LoginControl : System.Windows.Forms.UserControl
	{
		public event ResultDelegate Successful;
		public event ResultDelegate Failed;
		public event System.EventHandler Cancelled;
		public delegate void ResultDelegate(string UserID);
		private System.Windows.Forms.Label lPassword;
		private System.Windows.Forms.PictureBox pbImage;
		private System.Windows.Forms.Panel pHeader;
		private System.Windows.Forms.ErrorProvider errorProvider;
		private System.Windows.Forms.Label label1;
		private System.Windows.Forms.Button btnLogin;
		private System.Windows.Forms.Label lblUsername;
		private System.Windows.Forms.ComboBox cboDomains;
		private System.Windows.Forms.Label lblHeader;
		private System.Windows.Forms.Label lblText;
		private System.Windows.Forms.TextBox txtPassword;
		public System.Windows.Forms.TextBox txtUsername;
		private bool m_ShowMessageBox = true;
		private string[] m_domains;
		private string m_defaultDomain = System.Environment.UserDomainName;
		private Authentication.AuthenticationTypes m_AuthType = Authentication.AuthenticationTypes.ActiveDirectory;
		private System.Windows.Forms.Button btnCancel;
		/// <summary> 
		/// Required designer variable.
		/// </summary>
		private System.ComponentModel.Container components = null;

		/// <summary> 
		/// The public Initializer.
		/// </summary>
		public LoginControl()
		{

			InitializeComponent();
			this.txtUsername.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtUsername_KeyDown);
			this.txtPassword.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtPassword_KeyDown);
			this.cboDomains.KeyDown += new System.Windows.Forms.KeyEventHandler(this.cboDomains_KeyDown);
			this.btnCancel.KeyDown += new System.Windows.Forms.KeyEventHandler(this.btnCancel_KeyDown);
			this.btnLogin.KeyDown += new System.Windows.Forms.KeyEventHandler(this.btnLogin_KeyDown);

			string[] ar = new Authentication().DomainsStr;
			foreach (string s in ar)
			{
				this.cboDomains.Items.Add(s);
			}
		}

		/// <summary> 
		/// Clean up any resources being used.
		/// </summary>
		protected override void Dispose( bool disposing )
		{
			if( disposing )
			{
				if(components != null)
				{
					components.Dispose();
				}
			}
			base.Dispose( disposing );
		}

		#region Component Designer generated code
		/// <summary> 
		/// Required method for Designer support - do not modify 
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent()
		{
			System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(LoginControl));
			this.btnLogin = new System.Windows.Forms.Button();
			this.lPassword = new System.Windows.Forms.Label();
			this.lblUsername = new System.Windows.Forms.Label();
			this.txtPassword = new System.Windows.Forms.TextBox();
			this.pHeader = new System.Windows.Forms.Panel();
			this.pbImage = new System.Windows.Forms.PictureBox();
			this.lblHeader = new System.Windows.Forms.Label();
			this.lblText = new System.Windows.Forms.Label();
			this.txtUsername = new System.Windows.Forms.TextBox();
			this.errorProvider = new System.Windows.Forms.ErrorProvider();
			this.label1 = new System.Windows.Forms.Label();
			this.cboDomains = new System.Windows.Forms.ComboBox();
			this.btnCancel = new System.Windows.Forms.Button();
			this.pHeader.SuspendLayout();
			this.SuspendLayout();
			// 
			// btnLogin
			// 
			this.btnLogin.Anchor = System.Windows.Forms.AnchorStyles.None;
			this.btnLogin.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
			this.btnLogin.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.errorProvider.SetIconAlignment(this.btnLogin, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
			this.errorProvider.SetIconPadding(this.btnLogin, 3);
			this.btnLogin.Location = new System.Drawing.Point(228, 220);
			this.btnLogin.Name = "btnLogin";
			this.btnLogin.Size = new System.Drawing.Size(74, 20);
			this.btnLogin.TabIndex = 3;
			this.btnLogin.Text = "Login";
			this.btnLogin.Click += new System.EventHandler(this.btnLogin_Click);
			// 
			// lPassword
			// 
			this.lPassword.Anchor = System.Windows.Forms.AnchorStyles.None;
			this.lPassword.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.lPassword.Location = new System.Drawing.Point(14, 123);
			this.lPassword.Name = "lPassword";
			this.lPassword.Size = new System.Drawing.Size(84, 20);
			this.lPassword.TabIndex = 11;
			this.lPassword.Text = "Password";
			this.lPassword.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// lblUsername
			// 
			this.lblUsername.Anchor = System.Windows.Forms.AnchorStyles.None;
			this.lblUsername.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.lblUsername.Location = new System.Drawing.Point(14, 83);
			this.lblUsername.Name = "lblUsername";
			this.lblUsername.Size = new System.Drawing.Size(84, 20);
			this.lblUsername.TabIndex = 10;
			this.lblUsername.Text = "Username";
			this.lblUsername.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// txtPassword
			// 
			this.txtPassword.Anchor = System.Windows.Forms.AnchorStyles.None;
			this.txtPassword.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this.txtPassword.Location = new System.Drawing.Point(114, 123);
			this.txtPassword.Name = "txtPassword";
			this.txtPassword.Size = new System.Drawing.Size(274, 20);
			this.txtPassword.TabIndex = 1;
			this.txtPassword.Text = "";
			// 
			// pHeader
			// 
			this.pHeader.BackColor = System.Drawing.SystemColors.ActiveCaptionText;
			this.pHeader.Controls.Add(this.pbImage);
			this.pHeader.Controls.Add(this.lblHeader);
			this.pHeader.Controls.Add(this.lblText);
			this.pHeader.Dock = System.Windows.Forms.DockStyle.Top;
			this.pHeader.Location = new System.Drawing.Point(0, 0);
			this.pHeader.Name = "pHeader";
			this.pHeader.Size = new System.Drawing.Size(432, 60);
			this.pHeader.TabIndex = 8;
			// 
			// pbImage
			// 
			this.pbImage.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
			this.pbImage.Image = ((System.Drawing.Image)(resources.GetObject("pbImage.Image")));
			this.pbImage.Location = new System.Drawing.Point(372, 5);
			this.pbImage.Name = "pbImage";
			this.pbImage.Size = new System.Drawing.Size(48, 48);
			this.pbImage.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
			this.pbImage.TabIndex = 5;
			this.pbImage.TabStop = false;
			// 
			// lblHeader
			// 
			this.lblHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.lblHeader.Location = new System.Drawing.Point(10, 10);
			this.lblHeader.Name = "lblHeader";
			this.lblHeader.Size = new System.Drawing.Size(360, 20);
			this.lblHeader.TabIndex = 3;
			this.lblHeader.Text = "Login";
			this.lblHeader.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
			// 
			// lblText
			// 
			this.lblText.Location = new System.Drawing.Point(20, 30);
			this.lblText.Name = "lblText";
			this.lblText.Size = new System.Drawing.Size(360, 20);
			this.lblText.TabIndex = 4;
			this.lblText.Text = "Please enter your Username and Password.";
			this.lblText.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
			// 
			// txtUsername
			// 
			this.txtUsername.Anchor = System.Windows.Forms.AnchorStyles.None;
			this.txtUsername.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this.txtUsername.Location = new System.Drawing.Point(114, 83);
			this.txtUsername.Name = "txtUsername";
			this.txtUsername.Size = new System.Drawing.Size(274, 20);
			this.txtUsername.TabIndex = 0;
			this.txtUsername.Text = "";
			// 
			// errorProvider
			// 
			this.errorProvider.ContainerControl = this;
			// 
			// label1
			// 
			this.label1.Anchor = System.Windows.Forms.AnchorStyles.None;
			this.label1.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.label1.Location = new System.Drawing.Point(14, 163);
			this.label1.Name = "label1";
			this.label1.Size = new System.Drawing.Size(84, 20);
			this.label1.TabIndex = 13;
			this.label1.Text = "Domain";
			this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// cboDomains
			// 
			this.cboDomains.Anchor = System.Windows.Forms.AnchorStyles.None;
			this.cboDomains.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.cboDomains.Location = new System.Drawing.Point(114, 163);
			this.cboDomains.Name = "cboDomains";
			this.cboDomains.Size = new System.Drawing.Size(274, 21);
			this.cboDomains.Sorted = true;
			this.cboDomains.TabIndex = 2;
			// 
			// btnCancel
			// 
			this.btnCancel.Anchor = System.Windows.Forms.AnchorStyles.None;
			this.btnCancel.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
			this.btnCancel.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.btnCancel.Location = new System.Drawing.Point(312, 220);
			this.btnCancel.Name = "btnCancel";
			this.btnCancel.Size = new System.Drawing.Size(74, 20);
			this.btnCancel.TabIndex = 4;
			this.btnCancel.Text = "Cancel";
			this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
			// 
			// LoginControl
			// 
			this.Controls.Add(this.btnCancel);
			this.Controls.Add(this.cboDomains);
			this.Controls.Add(this.label1);
			this.Controls.Add(this.btnLogin);
			this.Controls.Add(this.lPassword);
			this.Controls.Add(this.lblUsername);
			this.Controls.Add(this.txtPassword);
			this.Controls.Add(this.pHeader);
			this.Controls.Add(this.txtUsername);
			this.Name = "LoginControl";
			this.Size = new System.Drawing.Size(432, 250);
			this.Load += new System.EventHandler(this.OnLoad);
			this.pHeader.ResumeLayout(false);
			this.ResumeLayout(false);

		}
		#endregion

		static void Main()
		{

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美一级欧美三级| 亚洲成人tv网| 日韩国产一二三区| 成人激情黄色小说| 欧美一区二区三区成人| 亚洲精品成a人| 久久www免费人成看片高清| 欧美三级午夜理伦三级中视频| 国产无人区一区二区三区| 亚洲大片精品永久免费| 91免费观看视频| 久久久噜噜噜久噜久久综合| 日本三级韩国三级欧美三级| 91免费精品国自产拍在线不卡| 久久综合网色—综合色88| 婷婷综合五月天| 色综合久久99| 亚洲欧洲国产日韩| 国产精品亚洲一区二区三区在线| 欧美一级爆毛片| 午夜激情久久久| 欧美性大战久久| 一区二区三区在线观看国产| 国产成人精品三级麻豆| 精品久久久久久无| 另类欧美日韩国产在线| 91精品国产综合久久蜜臀| 一区二区三区精品在线| 色网综合在线观看| 亚洲精品视频在线| 91九色02白丝porn| 亚洲乱码一区二区三区在线观看| 99热在这里有精品免费| 中文字幕亚洲在| 91在线精品一区二区| 亚洲欧美国产77777| 91同城在线观看| 一区二区三区在线视频免费| 在线观看中文字幕不卡| 亚洲亚洲人成综合网络| 久久精品视频免费观看| 国产福利一区二区三区在线视频| 国产网站一区二区| a美女胸又www黄视频久久| 国产精品卡一卡二| 91视视频在线直接观看在线看网页在线看| 国产精品福利电影一区二区三区四区| 国产成人精品亚洲777人妖| 国产精品国产三级国产aⅴ中文| 99国内精品久久| 亚洲图片一区二区| 日韩视频在线观看一区二区| 国产成人免费在线视频| 亚洲三级在线免费观看| 欧美中文字幕久久| 麻豆国产精品一区二区三区| 精品sm在线观看| 99久久综合精品| 婷婷一区二区三区| 久久女同互慰一区二区三区| 97国产一区二区| 日韩精品欧美成人高清一区二区| 日韩亚洲欧美在线| 国产传媒欧美日韩成人| 一区二区三区中文在线| 日韩三级电影网址| 99麻豆久久久国产精品免费| 日本女优在线视频一区二区| 中文字幕不卡三区| 欧美特级限制片免费在线观看| 精品一区二区久久| 亚洲天堂免费看| 日韩欧美精品三级| 91在线云播放| 久久er精品视频| 亚洲午夜羞羞片| 久久久99免费| 欧美丰满美乳xxx高潮www| 成人综合婷婷国产精品久久蜜臀| 午夜一区二区三区视频| 国产亚洲一区二区在线观看| 欧美最新大片在线看| 国产麻豆9l精品三级站| 五月婷婷久久综合| 国产精品欧美一区喷水| 日韩一二在线观看| 欧美专区日韩专区| 不卡视频在线看| 国产剧情av麻豆香蕉精品| 亚洲第一福利视频在线| 中文字幕一区二区三区在线播放| 欧美成人r级一区二区三区| 欧美午夜精品一区二区三区| www.在线成人| 国产精品自拍av| 蜜桃视频第一区免费观看| 综合色中文字幕| 国产日韩v精品一区二区| 日韩一级大片在线观看| 欧美日韩久久一区| 欧美在线999| 色伊人久久综合中文字幕| 不卡的看片网站| 国产999精品久久| 国产一区高清在线| 国产麻豆午夜三级精品| 激情五月婷婷综合| 麻豆一区二区三| 午夜久久久久久久久| 一区二区三区中文字幕在线观看| 中文字幕一区二区三区乱码在线| 亚洲国产成人在线| 国产欧美一区视频| 中文字幕国产一区| 国产精品久久久久三级| 亚洲国产成人私人影院tom | 国产精品传媒视频| 中文字幕电影一区| 国产精品进线69影院| 国产精品久久三| 中文字幕中文字幕一区| 亚洲色欲色欲www| 洋洋av久久久久久久一区| 亚洲永久精品国产| 午夜精品123| 蜜桃视频免费观看一区| 国产精品中文字幕一区二区三区| 国产毛片一区二区| 成人丝袜18视频在线观看| 一本久道中文字幕精品亚洲嫩| 在线精品视频免费播放| 欧美日产国产精品| 日韩精品一区二区三区swag | 亚洲天堂成人在线观看| 亚洲欧洲日本在线| 婷婷综合在线观看| 韩国欧美国产一区| 从欧美一区二区三区| 97国产一区二区| 欧美日韩精品三区| 久久伊人蜜桃av一区二区| 国产精品视频免费| 亚洲自拍与偷拍| 另类成人小视频在线| 国产成人免费视频网站 | 国产宾馆实践打屁股91| 99久久久久久99| 欧美一区二区视频网站| 精品成人私密视频| 日韩美女啊v在线免费观看| 亚洲午夜免费电影| 国产精品99久久久久久久女警 | 欧美一区二区网站| 欧美激情一区二区| 亚洲午夜日本在线观看| 国产一区欧美二区| 欧美日韩中文字幕一区二区| 26uuu国产日韩综合| 亚洲精品日韩综合观看成人91| 久久精品av麻豆的观看方式| 91色九色蝌蚪| 精品国偷自产国产一区| 亚洲精品第1页| 成人污污视频在线观看| 日韩欧美在线综合网| 亚洲精品免费在线播放| 国产一区二区三区香蕉| 欧美日韩免费视频| 亚洲三级在线免费观看| 国产精品亚洲а∨天堂免在线| 欧美年轻男男videosbes| 国产精品亲子乱子伦xxxx裸| 蜜臀av在线播放一区二区三区 | 不卡一区二区中文字幕| 久久网站最新地址| 日本中文在线一区| 色菇凉天天综合网| 国产精品久久久一区麻豆最新章节| 日韩高清不卡在线| 欧美日韩在线播放三区| 中文字幕综合网| 成人av中文字幕| 国产日产亚洲精品系列| 精品午夜一区二区三区在线观看| 欧美日韩一区在线| 亚洲综合成人在线视频| 91色视频在线| 亚洲卡通欧美制服中文| 成人丝袜高跟foot| 国产精品毛片久久久久久| 国产在线观看一区二区| 欧美精品一区二区三区高清aⅴ| 日韩中文欧美在线| 91精品国产高清一区二区三区| 一二三四区精品视频| 欧美性视频一区二区三区| 一区二区高清在线| 欧美在线播放高清精品| 亚洲一二三区在线观看| 91黄色在线观看|