Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Windows.Forms;
- namespace OrtizOL.Recetas.Capitulo01
- {
- class Bienvenida : Form
- {
- // Miembros privados para referenciar los controles del formulario
- private Label lblIngreseNombre;
- private TextBox txtNombre;
- private Button btnMostrarMensajeBienvenida;
- // Este construror inicializa controles y los configura
- public Bienvenida()
- {
- // Instancia los controles declarados como miembros
- this.lblIngreseNombre = new Label();
- this.txtNombre = new TextBox();
- this.btnMostrarMensajeBienvenida = new Button();
- // Suspende la lógica del layout hasta terminar de configurar
- // todos los elementos visuales.
- this.SuspendLayout();
- // Configura a lblIngreseNombre
- this.lblIngreseNombre.Location = new System.Drawing.Point(16,36);
- this.lblIngreseNombre.Name = "lblIngreseNombre";
- this.lblIngreseNombre.Size = new System.Drawing.Size(148, 16);
- this.lblIngreseNombre.TabIndex = 0;
- this.lblIngreseNombre.Text = "Ingrese su nombre:";
- // Configura a txtNombre
- this.txtNombre.Location = new System.Drawing.Point(172, 32);
- this.txtNombre.Name = "txtNombre";
- this.txtNombre.TabIndex = 1;
- this.txtNombre.Text = "";
- // Configura a btnMostrarMensajeBienvenida
- this.btnMostrarMensajeBienvenida.Location = new System.Drawing.Point(109, 80);
- this.btnMostrarMensajeBienvenida.Name = "btnMostrarMensajeBienvenida";
- this.btnMostrarMensajeBienvenida.TabIndex = 2;
- this.btnMostrarMensajeBienvenida.Text = "Mostrar";
- this.btnMostrarMensajeBienvenida.Click += new System.EventHandler(this.btnMostrarMensajeBienvenida_Click);
- // Configura el formulario
- this.ClientSize = new System.Drawing.Size(292, 126);
- this.Controls.Add(this.btnMostrarMensajeBienvenida);
- this.Controls.Add(this.txtNombre);
- this.Controls.Add(this.lblIngreseNombre);
- this.Name = "Bienvenida";
- this.Text = "Receta 1-2";
- // Reauna la lógica del layout
- this.ResumeLayout(false);
- }
- // Manejador del evento Click sobre el botón
- private void btnMostrarMensajeBienvenida_Click(object sender, System.EventArgs e)
- {
- // Muestra mensaje de depuraci'on en la consola.
- System.Console.WriteLine("El usuario ingresó: " + txtNombre.Text);
- // Muestra el mensaje en un diálogo de texto.
- MessageBox.Show("Bienvenido a las Recetas de C#, " + txtNombre.Text, "¨Recetas C#");
- }
- // Punto de entrada a la aplicación
- // Inicia thread para responder a eventos de los controles
- [STAThread]
- public static void Main()
- {
- Application.EnableVisualStyles();
- Application.Run(new Bienvenida());
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement