-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathForm1.Designer.cs
More file actions
199 lines (192 loc) · 9.33 KB
/
Form1.Designer.cs
File metadata and controls
199 lines (192 loc) · 9.33 KB
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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
namespace Encriptador
{
partial class Form1
{
/// <summary>
/// Variable del diseñador necesaria.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Limpiar los recursos que se estén usando.
/// </summary>
/// <param name="disposing">true si los recursos administrados se deben desechar; false en caso contrario.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Código generado por el Diseñador de Windows Forms
/// <summary>
/// Método necesario para admitir el Diseñador. No se puede modificar
/// el contenido de este método con el editor de código.
/// </summary>
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
this.menuStrip1 = new System.Windows.Forms.MenuStrip();
this.salirToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.encriptarToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.desencriptarToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.txtClave = new System.Windows.Forms.TextBox();
this.txtDesEncriptado = new System.Windows.Forms.TextBox();
this.txtEncriptado = new System.Windows.Forms.TextBox();
this.label = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.btnEncriptar = new System.Windows.Forms.Button();
this.btnDesEncriptar = new System.Windows.Forms.Button();
this.menuStrip1.SuspendLayout();
this.groupBox1.SuspendLayout();
this.SuspendLayout();
//
// menuStrip1
//
this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.salirToolStripMenuItem,
this.encriptarToolStripMenuItem,
this.desencriptarToolStripMenuItem});
this.menuStrip1.Location = new System.Drawing.Point(0, 0);
this.menuStrip1.Name = "menuStrip1";
this.menuStrip1.Size = new System.Drawing.Size(667, 24);
this.menuStrip1.TabIndex = 0;
this.menuStrip1.Text = "menuStrip1";
//
// salirToolStripMenuItem
//
this.salirToolStripMenuItem.Name = "salirToolStripMenuItem";
this.salirToolStripMenuItem.Size = new System.Drawing.Size(41, 20);
this.salirToolStripMenuItem.Text = "Salir";
this.salirToolStripMenuItem.Click += new System.EventHandler(this.salirToolStripMenuItem_Click);
//
// encriptarToolStripMenuItem
//
this.encriptarToolStripMenuItem.Name = "encriptarToolStripMenuItem";
this.encriptarToolStripMenuItem.Size = new System.Drawing.Size(66, 20);
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(85, 20);
this.desencriptarToolStripMenuItem.Text = "Desencriptar";
this.desencriptarToolStripMenuItem.Click += new System.EventHandler(this.desencriptarToolStripMenuItem_Click);
//
// groupBox1
//
this.groupBox1.Controls.Add(this.txtClave);
this.groupBox1.Location = new System.Drawing.Point(12, 27);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(642, 47);
this.groupBox1.TabIndex = 1;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "Clave para encriptación";
//
// txtClave
//
this.txtClave.Location = new System.Drawing.Point(6, 17);
this.txtClave.Name = "txtClave";
this.txtClave.PasswordChar = '*';
this.txtClave.Size = new System.Drawing.Size(626, 20);
this.txtClave.TabIndex = 0;
this.txtClave.UseSystemPasswordChar = true;
//
// txtDesEncriptado
//
this.txtDesEncriptado.Location = new System.Drawing.Point(12, 116);
this.txtDesEncriptado.Multiline = true;
this.txtDesEncriptado.Name = "txtDesEncriptado";
this.txtDesEncriptado.Size = new System.Drawing.Size(288, 322);
this.txtDesEncriptado.TabIndex = 2;
//
// txtEncriptado
//
this.txtEncriptado.Location = new System.Drawing.Point(356, 116);
this.txtEncriptado.Multiline = true;
this.txtEncriptado.Name = "txtEncriptado";
this.txtEncriptado.Size = new System.Drawing.Size(288, 322);
this.txtEncriptado.TabIndex = 3;
//
// label
//
this.label.AutoSize = true;
this.label.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label.Location = new System.Drawing.Point(353, 95);
this.label.Name = "label";
this.label.Size = new System.Drawing.Size(79, 18);
this.label.TabIndex = 4;
this.label.Text = "Encriptado";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label2.Location = new System.Drawing.Point(9, 95);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(104, 18);
this.label2.TabIndex = 5;
this.label2.Text = "Desencriptado";
//
// btnEncriptar
//
this.btnEncriptar.Location = new System.Drawing.Point(306, 173);
this.btnEncriptar.Name = "btnEncriptar";
this.btnEncriptar.Size = new System.Drawing.Size(44, 35);
this.btnEncriptar.TabIndex = 6;
this.btnEncriptar.Text = "-->";
this.btnEncriptar.UseVisualStyleBackColor = true;
this.btnEncriptar.Click += new System.EventHandler(this.btnEncriptar_Click);
//
// btnDesEncriptar
//
this.btnDesEncriptar.Location = new System.Drawing.Point(306, 214);
this.btnDesEncriptar.Name = "btnDesEncriptar";
this.btnDesEncriptar.Size = new System.Drawing.Size(44, 35);
this.btnDesEncriptar.TabIndex = 7;
this.btnDesEncriptar.Text = "<--";
this.btnDesEncriptar.UseVisualStyleBackColor = true;
this.btnDesEncriptar.Click += new System.EventHandler(this.btnDesEncriptar_Click);
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(667, 450);
this.Controls.Add(this.btnDesEncriptar);
this.Controls.Add(this.btnEncriptar);
this.Controls.Add(this.label2);
this.Controls.Add(this.label);
this.Controls.Add(this.txtEncriptado);
this.Controls.Add(this.txtDesEncriptado);
this.Controls.Add(this.groupBox1);
this.Controls.Add(this.menuStrip1);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MainMenuStrip = this.menuStrip1;
this.Name = "Form1";
this.Text = "Encriptador";
this.Load += new System.EventHandler(this.Form1_Load);
this.menuStrip1.ResumeLayout(false);
this.menuStrip1.PerformLayout();
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.MenuStrip menuStrip1;
private System.Windows.Forms.ToolStripMenuItem salirToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem encriptarToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem desencriptarToolStripMenuItem;
private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.TextBox txtClave;
private System.Windows.Forms.TextBox txtDesEncriptado;
private System.Windows.Forms.TextBox txtEncriptado;
private System.Windows.Forms.Label label;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Button btnEncriptar;
private System.Windows.Forms.Button btnDesEncriptar;
}
}