TFS_ANTIGUO/SIGPC/wcfSigdd/WindowsApplication__Encriptar/Encriptar.Designer.cs

170 lines
7.8 KiB
C#
Raw Permalink Normal View History

namespace WindowsApplication_OTSI_Encriptar
{
partial class frmEncriptador
{
/// <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.lblOriginal = new System.Windows.Forms.Label();
this.lblEncriptado = new System.Windows.Forms.Label();
this.txtOriginal = new System.Windows.Forms.TextBox();
this.txtEncriptado = new System.Windows.Forms.TextBox();
this.btnAceptar = new System.Windows.Forms.Button();
this.menuPrincipal = new System.Windows.Forms.MenuStrip();
this.inicioToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.encriptarToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.desencriptarToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.btnLimpiar = new System.Windows.Forms.Button();
this.menuPrincipal.SuspendLayout();
this.SuspendLayout();
//
// lblOriginal
//
this.lblOriginal.AutoSize = true;
this.lblOriginal.Location = new System.Drawing.Point(13, 26);
this.lblOriginal.Name = "lblOriginal";
this.lblOriginal.Size = new System.Drawing.Size(72, 13);
this.lblOriginal.TabIndex = 0;
this.lblOriginal.Text = "Texto Original";
//
// lblEncriptado
//
this.lblEncriptado.AutoSize = true;
this.lblEncriptado.Location = new System.Drawing.Point(13, 139);
this.lblEncriptado.Name = "lblEncriptado";
this.lblEncriptado.Size = new System.Drawing.Size(88, 13);
this.lblEncriptado.TabIndex = 1;
this.lblEncriptado.Text = "Texto Encriptado";
//
// txtOriginal
//
this.txtOriginal.Location = new System.Drawing.Point(116, 26);
this.txtOriginal.Multiline = true;
this.txtOriginal.Name = "txtOriginal";
this.txtOriginal.Size = new System.Drawing.Size(332, 89);
this.txtOriginal.TabIndex = 2;
//
// txtEncriptado
//
this.txtEncriptado.Location = new System.Drawing.Point(116, 136);
this.txtEncriptado.Multiline = true;
this.txtEncriptado.Name = "txtEncriptado";
this.txtEncriptado.Size = new System.Drawing.Size(332, 89);
this.txtEncriptado.TabIndex = 3;
//
// btnAceptar
//
this.btnAceptar.Location = new System.Drawing.Point(292, 231);
this.btnAceptar.Name = "btnAceptar";
this.btnAceptar.Size = new System.Drawing.Size(75, 23);
this.btnAceptar.TabIndex = 4;
this.btnAceptar.Text = "Encriptar";
this.btnAceptar.UseVisualStyleBackColor = true;
this.btnAceptar.Click += new System.EventHandler(this.btnAceptar_Click);
//
// menuPrincipal
//
this.menuPrincipal.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.inicioToolStripMenuItem});
this.menuPrincipal.Location = new System.Drawing.Point(0, 0);
this.menuPrincipal.Name = "menuPrincipal";
this.menuPrincipal.Size = new System.Drawing.Size(494, 24);
this.menuPrincipal.TabIndex = 5;
this.menuPrincipal.Text = "Menu";
//
// inicioToolStripMenuItem
//
this.inicioToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.encriptarToolStripMenuItem,
this.desencriptarToolStripMenuItem});
this.inicioToolStripMenuItem.Name = "inicioToolStripMenuItem";
this.inicioToolStripMenuItem.Size = new System.Drawing.Size(48, 20);
this.inicioToolStripMenuItem.Text = "Inicio";
//
// encriptarToolStripMenuItem
//
this.encriptarToolStripMenuItem.Name = "encriptarToolStripMenuItem";
this.encriptarToolStripMenuItem.Size = new System.Drawing.Size(140, 22);
this.encriptarToolStripMenuItem.Text = "Encriptar";
this.encriptarToolStripMenuItem.Click += new System.EventHandler(this.encriptarToolStripMenuItem_Click);
//
// desencriptarToolStripMenuItem
//
this.desencriptarToolStripMenuItem.Name = "desencriptarToolStripMenuItem";
this.desencriptarToolStripMenuItem.Size = new System.Drawing.Size(140, 22);
this.desencriptarToolStripMenuItem.Text = "Desencriptar";
this.desencriptarToolStripMenuItem.Click += new System.EventHandler(this.desencriptarToolStripMenuItem_Click);
//
// btnLimpiar
//
this.btnLimpiar.Location = new System.Drawing.Point(373, 231);
this.btnLimpiar.Name = "btnLimpiar";
this.btnLimpiar.Size = new System.Drawing.Size(75, 23);
this.btnLimpiar.TabIndex = 6;
this.btnLimpiar.Text = "Limpiar";
this.btnLimpiar.UseVisualStyleBackColor = true;
this.btnLimpiar.Click += new System.EventHandler(this.btnLimpiar_Click);
//
// frmEncriptador
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(494, 268);
this.Controls.Add(this.btnLimpiar);
this.Controls.Add(this.btnAceptar);
this.Controls.Add(this.txtEncriptado);
this.Controls.Add(this.txtOriginal);
this.Controls.Add(this.lblEncriptado);
this.Controls.Add(this.lblOriginal);
this.Controls.Add(this.menuPrincipal);
this.MainMenuStrip = this.menuPrincipal;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "frmEncriptador";
this.Text = "Encriptador";
this.menuPrincipal.ResumeLayout(false);
this.menuPrincipal.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label lblOriginal;
private System.Windows.Forms.Label lblEncriptado;
private System.Windows.Forms.TextBox txtOriginal;
private System.Windows.Forms.TextBox txtEncriptado;
private System.Windows.Forms.Button btnAceptar;
private System.Windows.Forms.MenuStrip menuPrincipal;
private System.Windows.Forms.ToolStripMenuItem inicioToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem encriptarToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem desencriptarToolStripMenuItem;
private System.Windows.Forms.Button btnLimpiar;
}
}