/
dev-npgsql
/
npgsql
Обзор
Документация
Войти
/
dev-npgsql
/
npgsql
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
v4.1.14
src/VSIX/NpgsqlConnectionUIControl.Designer.cs
265 строк
14 KB
Shimmy
Increased distance between controls in VSIX connection UI
27 мар 2020, 13:52
27 мар 2020, 13:52
3e08919
Код
Авторство
О чём код?
#nullable disable namespace Npgsql.VSIX { partial class NpgsqlConnectionUIControl { /// <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.hostLabel = new System.Windows.Forms.Label(); this.hostTextBox = new System.Windows.Forms.TextBox(); this.windowsAuthCheckbox = new System.Windows.Forms.CheckBox(); this.credentialsGroupBox = new System.Windows.Forms.GroupBox(); this.savePasswordCheckBox = new System.Windows.Forms.CheckBox(); this.passwordTextBox = new System.Windows.Forms.TextBox(); this.passwordLabel = new System.Windows.Forms.Label(); this.usernameLabel = new System.Windows.Forms.Label(); this.usernameTextBox = new System.Windows.Forms.TextBox(); this.connectionGroupBox = new System.Windows.Forms.GroupBox(); this.databaseTextBox = new System.Windows.Forms.TextBox(); this.databaseLabel = new System.Windows.Forms.Label(); this.portNumericUpDown = new System.Windows.Forms.NumericUpDown(); this.portLabel = new System.Windows.Forms.Label(); this.credentialsGroupBox.SuspendLayout(); this.connectionGroupBox.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.portNumericUpDown)).BeginInit(); this.SuspendLayout(); // // hostLabel // this.hostLabel.AutoSize = true; this.hostLabel.Location = new System.Drawing.Point(2, 18); this.hostLabel.Margin = new System.Windows.Forms.Padding(1, 0, 1, 0); this.hostLabel.Name = "hostLabel"; this.hostLabel.Size = new System.Drawing.Size(32, 13); this.hostLabel.TabIndex = 0; this.hostLabel.Text = "Host:"; // // hostTextBox // this.hostTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.hostTextBox.Location = new System.Drawing.Point(77, 15); this.hostTextBox.Margin = new System.Windows.Forms.Padding(1); this.hostTextBox.Name = "hostTextBox"; this.hostTextBox.Size = new System.Drawing.Size(417, 20); this.hostTextBox.TabIndex = 1; this.hostTextBox.TextChanged += new System.EventHandler(this.SetProperty); // // windowsAuthCheckbox // this.windowsAuthCheckbox.AutoSize = true; this.windowsAuthCheckbox.Location = new System.Drawing.Point(2, 15); this.windowsAuthCheckbox.Margin = new System.Windows.Forms.Padding(1); this.windowsAuthCheckbox.Name = "windowsAuthCheckbox"; this.windowsAuthCheckbox.Size = new System.Drawing.Size(141, 17); this.windowsAuthCheckbox.TabIndex = 4; this.windowsAuthCheckbox.Text = "Windows Authentication"; this.windowsAuthCheckbox.UseVisualStyleBackColor = true; this.windowsAuthCheckbox.CheckedChanged += new System.EventHandler(this.SetProperty); // // credentialsGroupBox // this.credentialsGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.credentialsGroupBox.Controls.Add(this.savePasswordCheckBox); this.credentialsGroupBox.Controls.Add(this.passwordTextBox); this.credentialsGroupBox.Controls.Add(this.passwordLabel); this.credentialsGroupBox.Controls.Add(this.windowsAuthCheckbox); this.credentialsGroupBox.Controls.Add(this.usernameLabel); this.credentialsGroupBox.Controls.Add(this.usernameTextBox); this.credentialsGroupBox.Location = new System.Drawing.Point(0, 97); this.credentialsGroupBox.Margin = new System.Windows.Forms.Padding(1); this.credentialsGroupBox.Name = "credentialsGroupBox"; this.credentialsGroupBox.Padding = new System.Windows.Forms.Padding(1); this.credentialsGroupBox.Size = new System.Drawing.Size(495, 110); this.credentialsGroupBox.TabIndex = 1; this.credentialsGroupBox.TabStop = false; this.credentialsGroupBox.Text = "Credentials"; // // savePasswordCheckBox // this.savePasswordCheckBox.AutoSize = true; this.savePasswordCheckBox.Location = new System.Drawing.Point(2, 78); this.savePasswordCheckBox.Margin = new System.Windows.Forms.Padding(1); this.savePasswordCheckBox.Name = "savePasswordCheckBox"; this.savePasswordCheckBox.Size = new System.Drawing.Size(115, 17); this.savePasswordCheckBox.TabIndex = 7; this.savePasswordCheckBox.Text = "Save my password"; this.savePasswordCheckBox.UseVisualStyleBackColor = true; this.savePasswordCheckBox.CheckedChanged += new System.EventHandler(this.SetProperty); // // passwordTextBox // this.passwordTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.passwordTextBox.Location = new System.Drawing.Point(77, 56); this.passwordTextBox.Margin = new System.Windows.Forms.Padding(1); this.passwordTextBox.Name = "passwordTextBox"; this.passwordTextBox.PasswordChar = '*'; this.passwordTextBox.Size = new System.Drawing.Size(416, 20); this.passwordTextBox.TabIndex = 6; this.passwordTextBox.TextChanged += new System.EventHandler(this.SetProperty); // // passwordLabel // this.passwordLabel.AutoSize = true; this.passwordLabel.Location = new System.Drawing.Point(2, 59); this.passwordLabel.Margin = new System.Windows.Forms.Padding(1, 0, 1, 0); this.passwordLabel.Name = "passwordLabel"; this.passwordLabel.Size = new System.Drawing.Size(56, 13); this.passwordLabel.TabIndex = 2; this.passwordLabel.Text = "Password:"; // // usernameLabel // this.usernameLabel.AutoSize = true; this.usernameLabel.Location = new System.Drawing.Point(2, 37); this.usernameLabel.Margin = new System.Windows.Forms.Padding(1, 0, 1, 0); this.usernameLabel.Name = "usernameLabel"; this.usernameLabel.Size = new System.Drawing.Size(61, 13); this.usernameLabel.TabIndex = 1; this.usernameLabel.Text = "User name:"; // // usernameTextBox // this.usernameTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.usernameTextBox.Location = new System.Drawing.Point(77, 34); this.usernameTextBox.Margin = new System.Windows.Forms.Padding(1); this.usernameTextBox.Name = "usernameTextBox"; this.usernameTextBox.Size = new System.Drawing.Size(416, 20); this.usernameTextBox.TabIndex = 5; this.usernameTextBox.TextChanged += new System.EventHandler(this.SetProperty); // // connectionGroupBox // this.connectionGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.connectionGroupBox.Controls.Add(this.databaseTextBox); this.connectionGroupBox.Controls.Add(this.databaseLabel); this.connectionGroupBox.Controls.Add(this.portNumericUpDown); this.connectionGroupBox.Controls.Add(this.portLabel); this.connectionGroupBox.Controls.Add(this.hostLabel); this.connectionGroupBox.Controls.Add(this.hostTextBox); this.connectionGroupBox.Location = new System.Drawing.Point(0, 1); this.connectionGroupBox.Margin = new System.Windows.Forms.Padding(1); this.connectionGroupBox.Name = "connectionGroupBox"; this.connectionGroupBox.Padding = new System.Windows.Forms.Padding(1); this.connectionGroupBox.Size = new System.Drawing.Size(496, 94); this.connectionGroupBox.TabIndex = 0; this.connectionGroupBox.TabStop = false; this.connectionGroupBox.Text = "Connection Details"; // // databaseTextBox // this.databaseTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.databaseTextBox.Location = new System.Drawing.Point(77, 59); this.databaseTextBox.Margin = new System.Windows.Forms.Padding(1); this.databaseTextBox.Name = "databaseTextBox"; this.databaseTextBox.Size = new System.Drawing.Size(417, 20); this.databaseTextBox.TabIndex = 3; this.databaseTextBox.TextChanged += new System.EventHandler(this.SetProperty); // // databaseLabel // this.databaseLabel.AutoSize = true; this.databaseLabel.Location = new System.Drawing.Point(2, 62); this.databaseLabel.Margin = new System.Windows.Forms.Padding(1, 0, 1, 0); this.databaseLabel.Name = "databaseLabel"; this.databaseLabel.Size = new System.Drawing.Size(56, 13); this.databaseLabel.TabIndex = 4; this.databaseLabel.Text = "Database:"; // // portNumericUpDown // this.portNumericUpDown.Location = new System.Drawing.Point(77, 37); this.portNumericUpDown.Margin = new System.Windows.Forms.Padding(1); this.portNumericUpDown.Maximum = new decimal(new int[] { 65535, 0, 0, 0}); this.portNumericUpDown.Name = "portNumericUpDown"; this.portNumericUpDown.Size = new System.Drawing.Size(62, 20); this.portNumericUpDown.TabIndex = 2; this.portNumericUpDown.Value = new decimal(new int[] { 5432, 0, 0, 0}); this.portNumericUpDown.ValueChanged += new System.EventHandler(this.SetProperty); // // portLabel // this.portLabel.AutoSize = true; this.portLabel.Location = new System.Drawing.Point(2, 39); this.portLabel.Margin = new System.Windows.Forms.Padding(1, 0, 1, 0); this.portLabel.Name = "portLabel"; this.portLabel.Size = new System.Drawing.Size(29, 13); this.portLabel.TabIndex = 2; this.portLabel.Text = "Port:"; // // NpgsqlConnectionUIControl // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.AutoSize = true; this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; this.Controls.Add(this.connectionGroupBox); this.Controls.Add(this.credentialsGroupBox); this.Margin = new System.Windows.Forms.Padding(1); this.Name = "NpgsqlConnectionUIControl"; this.Size = new System.Drawing.Size(496, 208); this.credentialsGroupBox.ResumeLayout(false); this.credentialsGroupBox.PerformLayout(); this.connectionGroupBox.ResumeLayout(false); this.connectionGroupBox.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.portNumericUpDown)).EndInit(); this.ResumeLayout(false); } #endregion private System.Windows.Forms.Label hostLabel; private System.Windows.Forms.TextBox hostTextBox; private System.Windows.Forms.CheckBox windowsAuthCheckbox; private System.Windows.Forms.GroupBox credentialsGroupBox; private System.Windows.Forms.TextBox passwordTextBox; private System.Windows.Forms.Label passwordLabel; private System.Windows.Forms.Label usernameLabel; private System.Windows.Forms.TextBox usernameTextBox; private System.Windows.Forms.GroupBox connectionGroupBox; private System.Windows.Forms.Label portLabel; private System.Windows.Forms.TextBox databaseTextBox; private System.Windows.Forms.Label databaseLabel; private System.Windows.Forms.NumericUpDown portNumericUpDown; private System.Windows.Forms.CheckBox savePasswordCheckBox; } }