namespace Inet.Viewer.WinForms { partial class AuthenticationDialog { /// <summary> /// Required designer variable. /// </summary> private System.ComponentModel.IContainer components = null; /// <summary> /// Clean up any resources being used. /// </summary> /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param> protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form 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() { this.label1 = new System.Windows.Forms.Label(); this.tbUser = new System.Windows.Forms.TextBox(); this.label2 = new System.Windows.Forms.Label(); this.tbPassword = new System.Windows.Forms.TextBox(); this.btnOK = new System.Windows.Forms.Button(); this.btnCancel = new System.Windows.Forms.Button(); this.tbMessage = new System.Windows.Forms.TextBox(); this.SuspendLayout(); // // label1 // this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); this.label1.AutoSize = true; this.label1.Location = new System.Drawing.Point(33, 114); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(61, 13); this.label1.TabIndex = 0; this.label1.Text = "User name:"; // // tbUser // this.tbUser.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.tbUser.Location = new System.Drawing.Point(102, 111); this.tbUser.Name = "tbUser"; this.tbUser.Size = new System.Drawing.Size(162, 20); this.tbUser.TabIndex = 1; this.tbUser.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.OnKeyPress); // // label2 // this.label2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); this.label2.AutoSize = true; this.label2.Location = new System.Drawing.Point(33, 148); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(56, 13); this.label2.TabIndex = 2; this.label2.Text = "Password:"; // // tbPassword // this.tbPassword.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.tbPassword.Location = new System.Drawing.Point(102, 145); this.tbPassword.Name = "tbPassword"; this.tbPassword.Size = new System.Drawing.Size(162, 20); this.tbPassword.TabIndex = 3; this.tbPassword.UseSystemPasswordChar = true; this.tbPassword.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.OnKeyPress); // // btnOK // this.btnOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.btnOK.DialogResult = System.Windows.Forms.DialogResult.OK; this.btnOK.Location = new System.Drawing.Point(135, 186); this.btnOK.Name = "btnOK"; this.btnOK.Size = new System.Drawing.Size(75, 25); this.btnOK.TabIndex = 4; this.btnOK.Text = "OK"; this.btnOK.UseVisualStyleBackColor = true; // // btnCancel // this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel; this.btnCancel.Location = new System.Drawing.Point(216, 186); this.btnCancel.Name = "btnCancel"; this.btnCancel.Size = new System.Drawing.Size(75, 25); this.btnCancel.TabIndex = 5; this.btnCancel.Text = "Cancel"; this.btnCancel.UseVisualStyleBackColor = true; // // tbMessage // this.tbMessage.AcceptsReturn = true; this.tbMessage.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.tbMessage.BackColor = System.Drawing.SystemColors.Window; this.tbMessage.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.tbMessage.Location = new System.Drawing.Point(12, 12); this.tbMessage.Multiline = true; this.tbMessage.Name = "tbMessage"; this.tbMessage.ReadOnly = true; this.tbMessage.Size = new System.Drawing.Size(279, 83); this.tbMessage.TabIndex = 7; // // AuthenticationDialog // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(303, 226); this.Controls.Add(this.tbMessage); this.Controls.Add(this.btnCancel); this.Controls.Add(this.btnOK); this.Controls.Add(this.tbPassword); this.Controls.Add(this.label2); this.Controls.Add(this.tbUser); this.Controls.Add(this.label1); this.Name = "AuthenticationDialog"; this.Text = "Authentication"; this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.Label label1; private System.Windows.Forms.TextBox tbUser; private System.Windows.Forms.Label label2; private System.Windows.Forms.TextBox tbPassword; private System.Windows.Forms.Button btnOK; private System.Windows.Forms.Button btnCancel; private System.Windows.Forms.TextBox tbMessage; } }