wmie2/WmiExplorer/Forms/Form_ConnectAs.Designer.cs

169 lines
7.5 KiB
C#

namespace WmiExplorer.Forms
{
partial class Form_ConnectAs
{
/// <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.buttonCancel = new System.Windows.Forms.Button();
this.buttonConnect = new System.Windows.Forms.Button();
this.labelPassword = new System.Windows.Forms.Label();
this.textBoxPassword = new System.Windows.Forms.TextBox();
this.labelUsername = new System.Windows.Forms.Label();
this.textBoxUsername = new System.Windows.Forms.TextBox();
this.labelPath = new System.Windows.Forms.Label();
this.textBoxPath = new System.Windows.Forms.TextBox();
this.labelDescription = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// buttonCancel
//
this.buttonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.buttonCancel.Location = new System.Drawing.Point(15, 178);
this.buttonCancel.Margin = new System.Windows.Forms.Padding(10);
this.buttonCancel.Name = "buttonCancel";
this.buttonCancel.Size = new System.Drawing.Size(108, 23);
this.buttonCancel.TabIndex = 4;
this.buttonCancel.Text = "Cancel";
this.buttonCancel.UseVisualStyleBackColor = true;
this.buttonCancel.Click += new System.EventHandler(this.buttonCancel_Click);
//
// buttonConnect
//
this.buttonConnect.Location = new System.Drawing.Point(259, 178);
this.buttonConnect.Margin = new System.Windows.Forms.Padding(10);
this.buttonConnect.Name = "buttonConnect";
this.buttonConnect.Size = new System.Drawing.Size(113, 23);
this.buttonConnect.TabIndex = 3;
this.buttonConnect.Text = "Connect";
this.buttonConnect.UseVisualStyleBackColor = true;
this.buttonConnect.Click += new System.EventHandler(this.buttonOk_Click);
//
// labelPassword
//
this.labelPassword.AutoSize = true;
this.labelPassword.Location = new System.Drawing.Point(12, 129);
this.labelPassword.Name = "labelPassword";
this.labelPassword.Size = new System.Drawing.Size(56, 13);
this.labelPassword.TabIndex = 18;
this.labelPassword.Text = "Password:";
//
// textBoxPassword
//
this.textBoxPassword.Location = new System.Drawing.Point(15, 146);
this.textBoxPassword.Name = "textBoxPassword";
this.textBoxPassword.Size = new System.Drawing.Size(357, 20);
this.textBoxPassword.TabIndex = 2;
this.textBoxPassword.UseSystemPasswordChar = true;
//
// labelUsername
//
this.labelUsername.AutoSize = true;
this.labelUsername.Location = new System.Drawing.Point(12, 86);
this.labelUsername.Name = "labelUsername";
this.labelUsername.Size = new System.Drawing.Size(169, 13);
this.labelUsername.TabIndex = 16;
this.labelUsername.Text = "Username (DOMAIN\\User format):";
//
// textBoxUsername
//
this.textBoxUsername.Location = new System.Drawing.Point(15, 103);
this.textBoxUsername.Name = "textBoxUsername";
this.textBoxUsername.Size = new System.Drawing.Size(357, 20);
this.textBoxUsername.TabIndex = 1;
//
// labelPath
//
this.labelPath.AutoSize = true;
this.labelPath.Location = new System.Drawing.Point(12, 43);
this.labelPath.Name = "labelPath";
this.labelPath.Size = new System.Drawing.Size(122, 13);
this.labelPath.TabIndex = 14;
this.labelPath.Text = "Remote Computer/Path:";
//
// textBoxPath
//
this.textBoxPath.Location = new System.Drawing.Point(15, 60);
this.textBoxPath.Name = "textBoxPath";
this.textBoxPath.Size = new System.Drawing.Size(357, 20);
this.textBoxPath.TabIndex = 0;
//
// labelDescription
//
this.labelDescription.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.labelDescription.Location = new System.Drawing.Point(12, 9);
this.labelDescription.Name = "labelDescription";
this.labelDescription.Size = new System.Drawing.Size(360, 36);
this.labelDescription.TabIndex = 5;
this.labelDescription.Text = "Connect to a remote computer/path using Alternate Credentials. Alternate Credenti" +
"als can only be used for remote connections.";
//
// Form_ConnectAs
//
this.AcceptButton = this.buttonConnect;
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
this.AutoSize = true;
this.CancelButton = this.buttonCancel;
this.ClientSize = new System.Drawing.Size(384, 211);
this.ControlBox = false;
this.Controls.Add(this.buttonConnect);
this.Controls.Add(this.buttonCancel);
this.Controls.Add(this.textBoxPassword);
this.Controls.Add(this.labelPassword);
this.Controls.Add(this.textBoxUsername);
this.Controls.Add(this.labelUsername);
this.Controls.Add(this.textBoxPath);
this.Controls.Add(this.labelPath);
this.Controls.Add(this.labelDescription);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
this.MinimizeBox = false;
this.Name = "Form_ConnectAs";
this.ShowIcon = false;
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "Connect As...";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button buttonCancel;
private System.Windows.Forms.Button buttonConnect;
private System.Windows.Forms.Label labelPassword;
private System.Windows.Forms.TextBox textBoxPassword;
private System.Windows.Forms.Label labelUsername;
private System.Windows.Forms.TextBox textBoxUsername;
private System.Windows.Forms.Label labelPath;
private System.Windows.Forms.TextBox textBoxPath;
private System.Windows.Forms.Label labelDescription;
}
}