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 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149
|
namespace MySql.Data.VisualStudio
{
partial class MySqlDataConnectionUI
{
/// <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.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MySqlDataConnectionUI));
this.loginTableLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
this.passwordLabel = new System.Windows.Forms.Label();
this.serverNameTextBox = new System.Windows.Forms.TextBox();
this.savePasswordCheckBox = new System.Windows.Forms.CheckBox();
this.databaseNameLabel = new System.Windows.Forms.Label();
this.userNameLabel = new System.Windows.Forms.Label();
this.serverNameLabel = new System.Windows.Forms.Label();
this.userNameTextBox = new System.Windows.Forms.TextBox();
this.passwordTextBox = new System.Windows.Forms.TextBox();
this.dbList = new System.Windows.Forms.ComboBox();
this.loginTableLayoutPanel.SuspendLayout();
this.SuspendLayout();
//
// loginTableLayoutPanel
//
resources.ApplyResources(this.loginTableLayoutPanel, "loginTableLayoutPanel");
this.loginTableLayoutPanel.Controls.Add(this.passwordLabel, 0, 2);
this.loginTableLayoutPanel.Controls.Add(this.serverNameTextBox, 1, 0);
this.loginTableLayoutPanel.Controls.Add(this.savePasswordCheckBox, 1, 3);
this.loginTableLayoutPanel.Controls.Add(this.databaseNameLabel, 0, 4);
this.loginTableLayoutPanel.Controls.Add(this.userNameLabel, 0, 1);
this.loginTableLayoutPanel.Controls.Add(this.serverNameLabel, 0, 0);
this.loginTableLayoutPanel.Controls.Add(this.userNameTextBox, 1, 1);
this.loginTableLayoutPanel.Controls.Add(this.passwordTextBox, 1, 2);
this.loginTableLayoutPanel.Controls.Add(this.dbList, 1, 4);
this.loginTableLayoutPanel.Name = "loginTableLayoutPanel";
//
// passwordLabel
//
resources.ApplyResources(this.passwordLabel, "passwordLabel");
this.passwordLabel.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.passwordLabel.Name = "passwordLabel";
//
// serverNameTextBox
//
resources.ApplyResources(this.serverNameTextBox, "serverNameTextBox");
this.serverNameTextBox.Name = "serverNameTextBox";
this.serverNameTextBox.Tag = "Server";
this.serverNameTextBox.TextChanged += new System.EventHandler(this.SetProperty);
this.serverNameTextBox.Leave += new System.EventHandler(this.TrimControlText);
//
// savePasswordCheckBox
//
resources.ApplyResources(this.savePasswordCheckBox, "savePasswordCheckBox");
this.savePasswordCheckBox.Name = "savePasswordCheckBox";
this.savePasswordCheckBox.Tag = "Persist Security Info";
this.savePasswordCheckBox.CheckedChanged += new System.EventHandler(this.SavePasswordChanged);
//
// databaseNameLabel
//
resources.ApplyResources(this.databaseNameLabel, "databaseNameLabel");
this.databaseNameLabel.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.databaseNameLabel.Name = "databaseNameLabel";
//
// userNameLabel
//
resources.ApplyResources(this.userNameLabel, "userNameLabel");
this.userNameLabel.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.userNameLabel.Name = "userNameLabel";
//
// serverNameLabel
//
resources.ApplyResources(this.serverNameLabel, "serverNameLabel");
this.serverNameLabel.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.serverNameLabel.Name = "serverNameLabel";
//
// userNameTextBox
//
resources.ApplyResources(this.userNameTextBox, "userNameTextBox");
this.userNameTextBox.Name = "userNameTextBox";
this.userNameTextBox.Tag = "User id";
this.userNameTextBox.TextChanged += new System.EventHandler(this.SetProperty);
this.userNameTextBox.Leave += new System.EventHandler(this.TrimControlText);
//
// passwordTextBox
//
resources.ApplyResources(this.passwordTextBox, "passwordTextBox");
this.passwordTextBox.Name = "passwordTextBox";
this.passwordTextBox.Tag = "Password";
this.passwordTextBox.UseSystemPasswordChar = true;
this.passwordTextBox.TextChanged += new System.EventHandler(this.SetProperty);
//
// dbList
//
resources.ApplyResources(this.dbList, "dbList");
this.dbList.FormattingEnabled = true;
this.dbList.Name = "dbList";
this.dbList.Tag = "Database";
this.dbList.DropDown += new System.EventHandler(this.dbList_DropDown);
this.dbList.TextChanged += new System.EventHandler(this.SetProperty);
//
// MySqlDataConnectionUI
//
resources.ApplyResources(this, "$this");
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.loginTableLayoutPanel);
this.Name = "MySqlDataConnectionUI";
this.loginTableLayoutPanel.ResumeLayout(false);
this.loginTableLayoutPanel.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.TableLayoutPanel loginTableLayoutPanel;
private System.Windows.Forms.Label userNameLabel;
private System.Windows.Forms.TextBox userNameTextBox;
private System.Windows.Forms.Label passwordLabel;
private System.Windows.Forms.TextBox passwordTextBox;
private System.Windows.Forms.CheckBox savePasswordCheckBox;
private System.Windows.Forms.TextBox serverNameTextBox;
private System.Windows.Forms.Label databaseNameLabel;
private System.Windows.Forms.Label serverNameLabel;
private System.Windows.Forms.ComboBox dbList;
}
}
|