namespace Maestro.Editors.FeatureSource.Providers { partial class SetCredentialsDialog { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.label1 = new System.Windows.Forms.Label(); this.label2 = new System.Windows.Forms.Label(); this.txtUserProperty = new System.Windows.Forms.TextBox(); this.txtPasswordProperty = new System.Windows.Forms.TextBox(); this.txtPassword = new System.Windows.Forms.TextBox(); this.txtUsername = new System.Windows.Forms.TextBox(); this.btnUserProperty = new System.Windows.Forms.Button(); this.btnPasswordProperty = new System.Windows.Forms.Button(); this.btnOK = new System.Windows.Forms.Button(); this.btnCancel = new System.Windows.Forms.Button(); this.label3 = new System.Windows.Forms.Label(); this.SuspendLayout(); // // label1 // this.label1.AutoSize = true; this.label1.Location = new System.Drawing.Point(13, 13); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(55, 13); this.label1.TabIndex = 0; this.label1.Text = "Username"; // // label2 // this.label2.AutoSize = true; this.label2.Location = new System.Drawing.Point(13, 87); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(53, 13); this.label2.TabIndex = 1; this.label2.Text = "Password"; // // txtUserProperty // this.txtUserProperty.Location = new System.Drawing.Point(92, 10); this.txtUserProperty.Name = "txtUserProperty"; this.txtUserProperty.ReadOnly = true; this.txtUserProperty.Size = new System.Drawing.Size(132, 20); this.txtUserProperty.TabIndex = 2; // // txtPasswordProperty // this.txtPasswordProperty.Location = new System.Drawing.Point(92, 84); this.txtPasswordProperty.Name = "txtPasswordProperty"; this.txtPasswordProperty.ReadOnly = true; this.txtPasswordProperty.Size = new System.Drawing.Size(132, 20); this.txtPasswordProperty.TabIndex = 3; // // txtPassword // this.txtPassword.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.txtPassword.Location = new System.Drawing.Point(92, 110); this.txtPassword.Name = "txtPassword"; this.txtPassword.PasswordChar = '*'; this.txtPassword.Size = new System.Drawing.Size(351, 20); this.txtPassword.TabIndex = 5; this.txtPassword.TextChanged += new System.EventHandler(this.txtPassword_TextChanged); // // txtUsername // this.txtUsername.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.txtUsername.Location = new System.Drawing.Point(92, 36); this.txtUsername.Name = "txtUsername"; this.txtUsername.Size = new System.Drawing.Size(351, 20); this.txtUsername.TabIndex = 4; this.txtUsername.TextChanged += new System.EventHandler(this.txtUsername_TextChanged); // // btnUserProperty // this.btnUserProperty.Location = new System.Drawing.Point(230, 8); this.btnUserProperty.Name = "btnUserProperty"; this.btnUserProperty.Size = new System.Drawing.Size(32, 23); this.btnUserProperty.TabIndex = 6; this.btnUserProperty.Text = "..."; this.btnUserProperty.UseVisualStyleBackColor = true; this.btnUserProperty.Click += new System.EventHandler(this.btnUserProperty_Click); // // btnPasswordProperty // this.btnPasswordProperty.Location = new System.Drawing.Point(230, 82); this.btnPasswordProperty.Name = "btnPasswordProperty"; this.btnPasswordProperty.Size = new System.Drawing.Size(32, 23); this.btnPasswordProperty.TabIndex = 7; this.btnPasswordProperty.Text = "..."; this.btnPasswordProperty.UseVisualStyleBackColor = true; this.btnPasswordProperty.Click += new System.EventHandler(this.btnPasswordProperty_Click); // // btnOK // this.btnOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.btnOK.Enabled = false; this.btnOK.Location = new System.Drawing.Point(287, 155); this.btnOK.Name = "btnOK"; this.btnOK.Size = new System.Drawing.Size(75, 23); this.btnOK.TabIndex = 8; this.btnOK.Text = "OK"; this.btnOK.UseVisualStyleBackColor = true; this.btnOK.Click += new System.EventHandler(this.btnOK_Click); // // btnCancel // this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.btnCancel.Location = new System.Drawing.Point(368, 155); this.btnCancel.Name = "btnCancel"; this.btnCancel.Size = new System.Drawing.Size(75, 23); this.btnCancel.TabIndex = 9; this.btnCancel.Text = "Cancel"; this.btnCancel.UseVisualStyleBackColor = true; this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click); // // label3 // this.label3.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.label3.Location = new System.Drawing.Point(16, 143); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(263, 40); this.label3.TabIndex = 10; this.label3.Text = "Select the username and password properties and specify their values"; // // SetCredentialsDialog // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(455, 190); this.ControlBox = false; this.Controls.Add(this.label3); this.Controls.Add(this.btnCancel); this.Controls.Add(this.btnOK); this.Controls.Add(this.btnPasswordProperty); this.Controls.Add(this.btnUserProperty); this.Controls.Add(this.txtPassword); this.Controls.Add(this.txtUsername); this.Controls.Add(this.txtPasswordProperty); this.Controls.Add(this.txtUserProperty); this.Controls.Add(this.label2); this.Controls.Add(this.label1); this.Name = "SetCredentialsDialog"; this.Text = "User Credentials"; this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.Label label1; private System.Windows.Forms.Label label2; private System.Windows.Forms.TextBox txtUserProperty; private System.Windows.Forms.TextBox txtPasswordProperty; private System.Windows.Forms.TextBox txtPassword; private System.Windows.Forms.TextBox txtUsername; private System.Windows.Forms.Button btnUserProperty; private System.Windows.Forms.Button btnPasswordProperty; private System.Windows.Forms.Button btnOK; private System.Windows.Forms.Button btnCancel; private System.Windows.Forms.Label label3; } }