-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathForm1.Designer.cs
111 lines (104 loc) · 4.58 KB
/
Form1.Designer.cs
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
namespace TestControles
{
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()
{
this.components = new System.ComponentModel.Container();
this.label1 = new System.Windows.Forms.Label();
this.btnGuardar = new System.Windows.Forms.Button();
this.epDato = new System.Windows.Forms.ErrorProvider(this.components);
this.nudEdad = new System.Windows.Forms.NumericUpDown();
this.numericChartRangeControlClient1 = new DevExpress.XtraEditors.NumericChartRangeControlClient();
this.lblMensaje = new System.Windows.Forms.Label();
((System.ComponentModel.ISupportInitialize)(this.epDato)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.nudEdad)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.numericChartRangeControlClient1)).BeginInit();
this.SuspendLayout();
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(9, 49);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(68, 13);
this.label1.TabIndex = 0;
this.label1.Text = "ingrese edad";
//
// btnGuardar
//
this.btnGuardar.Location = new System.Drawing.Point(83, 72);
this.btnGuardar.Name = "btnGuardar";
this.btnGuardar.Size = new System.Drawing.Size(75, 23);
this.btnGuardar.TabIndex = 2;
this.btnGuardar.Text = "Guardar";
this.btnGuardar.UseVisualStyleBackColor = true;
this.btnGuardar.Click += new System.EventHandler(this.btnGuardar_Click);
//
// epDato
//
this.epDato.ContainerControl = this;
//
// nudEdad
//
this.nudEdad.Location = new System.Drawing.Point(83, 45);
this.nudEdad.Name = "nudEdad";
this.nudEdad.Size = new System.Drawing.Size(120, 20);
this.nudEdad.TabIndex = 3;
//
// lblMensaje
//
this.lblMensaje.AutoSize = true;
this.lblMensaje.Location = new System.Drawing.Point(80, 98);
this.lblMensaje.Name = "lblMensaje";
this.lblMensaje.Size = new System.Drawing.Size(35, 13);
this.lblMensaje.TabIndex = 4;
this.lblMensaje.Text = "label2";
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(276, 232);
this.Controls.Add(this.lblMensaje);
this.Controls.Add(this.nudEdad);
this.Controls.Add(this.btnGuardar);
this.Controls.Add(this.label1);
this.Name = "Form1";
this.Text = "Form1";
((System.ComponentModel.ISupportInitialize)(this.epDato)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.nudEdad)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.numericChartRangeControlClient1)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Button btnGuardar;
private System.Windows.Forms.ErrorProvider epDato;
private System.Windows.Forms.NumericUpDown nudEdad;
private DevExpress.XtraEditors.NumericChartRangeControlClient numericChartRangeControlClient1;
private System.Windows.Forms.Label lblMensaje;
}
}