1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131
|
namespace MySql.Data.VisualStudio
{
partial class MySqlDataConnectionPromptDialog
{
/// <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 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.Windows.Forms.Button buttonOK;
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MySqlDataConnectionPromptDialog));
System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
System.Windows.Forms.Label label1;
System.Windows.Forms.Label label3;
System.Windows.Forms.Button buttonCancel;
this.savePassword = new System.Windows.Forms.CheckBox();
this.login = new System.Windows.Forms.TextBox();
this.password = new System.Windows.Forms.TextBox();
buttonOK = new System.Windows.Forms.Button();
tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
label1 = new System.Windows.Forms.Label();
label3 = new System.Windows.Forms.Label();
buttonCancel = new System.Windows.Forms.Button();
tableLayoutPanel1.SuspendLayout();
this.SuspendLayout();
//
// buttonOK
//
buttonOK.DialogResult = System.Windows.Forms.DialogResult.OK;
resources.ApplyResources(buttonOK, "buttonOK");
buttonOK.Name = "buttonOK";
buttonOK.UseVisualStyleBackColor = true;
buttonOK.Click += new System.EventHandler(this.OkClick);
//
// tableLayoutPanel1
//
resources.ApplyResources(tableLayoutPanel1, "tableLayoutPanel1");
tableLayoutPanel1.Controls.Add(label1, 0, 1);
tableLayoutPanel1.Controls.Add(this.savePassword, 1, 2);
tableLayoutPanel1.Controls.Add(label3, 0, 0);
tableLayoutPanel1.Controls.Add(this.login, 1, 0);
tableLayoutPanel1.Controls.Add(this.password, 1, 1);
tableLayoutPanel1.Name = "tableLayoutPanel1";
//
// label1
//
resources.ApplyResources(label1, "label1");
label1.FlatStyle = System.Windows.Forms.FlatStyle.System;
label1.Name = "label1";
//
// savePassword
//
resources.ApplyResources(this.savePassword, "savePassword");
this.savePassword.Name = "savePassword";
//
// label3
//
resources.ApplyResources(label3, "label3");
label3.FlatStyle = System.Windows.Forms.FlatStyle.System;
label3.Name = "label3";
//
// login
//
resources.ApplyResources(this.login, "login");
this.login.Name = "login";
this.login.Tag = "User id";
//
// password
//
resources.ApplyResources(this.password, "password");
this.password.Name = "password";
this.password.Tag = "Password";
this.password.UseSystemPasswordChar = true;
//
// buttonCancel
//
buttonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
resources.ApplyResources(buttonCancel, "buttonCancel");
buttonCancel.Name = "buttonCancel";
buttonCancel.UseVisualStyleBackColor = true;
//
// MySqlDataConnectionPromptDialog
//
this.AcceptButton = buttonOK;
resources.ApplyResources(this, "$this");
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = buttonCancel;
this.Controls.Add(buttonCancel);
this.Controls.Add(tableLayoutPanel1);
this.Controls.Add(buttonOK);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "MySqlDataConnectionPromptDialog";
this.ShowIcon = false;
this.ShowInTaskbar = false;
tableLayoutPanel1.ResumeLayout(false);
tableLayoutPanel1.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.CheckBox savePassword;
private System.Windows.Forms.TextBox login;
private System.Windows.Forms.TextBox password;
}
}
|