Levelcode-IBRCAD/IBRCAD/frm_configserveremail.Designer.cs

214 lines
7.3 KiB
C#

namespace IBRCAD
{
partial class frm_configserveremail
{
/// <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()
{
pn_config = new Panel();
btn_save = new Button();
btn_novo = new Button();
txt_ssl = new TextBox();
label5 = new Label();
txt_port = new TextBox();
label4 = new Label();
txt_host = new TextBox();
label3 = new Label();
chk_showPass = new CheckBox();
txt_pwd = new TextBox();
label2 = new Label();
txt_senderEmail = new TextBox();
label1 = new Label();
pn_config.SuspendLayout();
SuspendLayout();
//
// pn_config
//
pn_config.Controls.Add(btn_save);
pn_config.Controls.Add(btn_novo);
pn_config.Controls.Add(txt_ssl);
pn_config.Controls.Add(label5);
pn_config.Controls.Add(txt_port);
pn_config.Controls.Add(label4);
pn_config.Controls.Add(txt_host);
pn_config.Controls.Add(label3);
pn_config.Controls.Add(chk_showPass);
pn_config.Controls.Add(txt_pwd);
pn_config.Controls.Add(label2);
pn_config.Controls.Add(txt_senderEmail);
pn_config.Controls.Add(label1);
pn_config.Dock = DockStyle.Fill;
pn_config.Location = new Point(0, 0);
pn_config.Name = "pn_config";
pn_config.Size = new Size(364, 379);
pn_config.TabIndex = 0;
//
// btn_save
//
btn_save.Location = new Point(185, 322);
btn_save.Name = "btn_save";
btn_save.Size = new Size(145, 45);
btn_save.TabIndex = 12;
btn_save.Text = "Salvar";
btn_save.UseVisualStyleBackColor = true;
btn_save.Click += btn_save_Click;
//
// btn_novo
//
btn_novo.Location = new Point(15, 322);
btn_novo.Name = "btn_novo";
btn_novo.Size = new Size(145, 45);
btn_novo.TabIndex = 11;
btn_novo.Text = "Novo";
btn_novo.UseVisualStyleBackColor = true;
btn_novo.Click += btn_novo_Click;
//
// txt_ssl
//
txt_ssl.Location = new Point(12, 291);
txt_ssl.Name = "txt_ssl";
txt_ssl.Size = new Size(340, 23);
txt_ssl.TabIndex = 10;
//
// label5
//
label5.AutoSize = true;
label5.Location = new Point(12, 267);
label5.Name = "label5";
label5.Size = new Size(183, 15);
label5.TabIndex = 9;
label5.Text = "Criptografia do servidor de email:";
//
// txt_port
//
txt_port.Location = new Point(12, 231);
txt_port.Name = "txt_port";
txt_port.Size = new Size(78, 23);
txt_port.TabIndex = 8;
//
// label4
//
label4.AutoSize = true;
label4.Location = new Point(12, 204);
label4.Name = "label4";
label4.Size = new Size(148, 15);
label4.TabIndex = 7;
label4.Text = "Porta do servidor de email:";
//
// txt_host
//
txt_host.Location = new Point(12, 174);
txt_host.Name = "txt_host";
txt_host.Size = new Size(340, 23);
txt_host.TabIndex = 6;
//
// label3
//
label3.AutoSize = true;
label3.Location = new Point(12, 147);
label3.Name = "label3";
label3.Size = new Size(145, 15);
label3.TabIndex = 5;
label3.Text = "Host do servidor de email:";
//
// chk_showPass
//
chk_showPass.AutoSize = true;
chk_showPass.Location = new Point(250, 125);
chk_showPass.Name = "chk_showPass";
chk_showPass.Size = new Size(102, 19);
chk_showPass.TabIndex = 4;
chk_showPass.Text = "Mostrar Senha";
chk_showPass.UseVisualStyleBackColor = true;
chk_showPass.CheckedChanged += chk_showPass_CheckedChanged;
//
// txt_pwd
//
txt_pwd.Location = new Point(12, 96);
txt_pwd.Name = "txt_pwd";
txt_pwd.PasswordChar = '*';
txt_pwd.Size = new Size(340, 23);
txt_pwd.TabIndex = 3;
//
// label2
//
label2.AutoSize = true;
label2.Location = new Point(12, 78);
label2.Name = "label2";
label2.Size = new Size(130, 15);
label2.TabIndex = 2;
label2.Text = "Senha de app do Email:";
//
// txt_senderEmail
//
txt_senderEmail.Location = new Point(12, 38);
txt_senderEmail.Name = "txt_senderEmail";
txt_senderEmail.Size = new Size(340, 23);
txt_senderEmail.TabIndex = 1;
//
// label1
//
label1.AutoSize = true;
label1.Location = new Point(12, 20);
label1.Name = "label1";
label1.Size = new Size(78, 15);
label1.TabIndex = 0;
label1.Text = "Sender email:";
//
// frm_configserveremail
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(364, 379);
Controls.Add(pn_config);
FormBorderStyle = FormBorderStyle.FixedToolWindow;
Name = "frm_configserveremail";
StartPosition = FormStartPosition.CenterScreen;
Text = "Configuração de Servidor de Email";
Load += frm_configserveremail_Load;
pn_config.ResumeLayout(false);
pn_config.PerformLayout();
ResumeLayout(false);
}
#endregion
private Panel pn_config;
private TextBox txt_senderEmail;
private Label label1;
private CheckBox chk_showPass;
private TextBox txt_pwd;
private Label label2;
private TextBox txt_host;
private Label label3;
private TextBox txt_port;
private Label label4;
private Button btn_save;
private Button btn_novo;
private TextBox txt_ssl;
private Label label5;
}
}