Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ===++===
- //
- // OrtizOL
- //
- // ===--===
- /*============================================================
- //
- // Clase: ControlRegistroEstudiante.cs
- //
- // Original en: http://goo.gl/aEJpty
- //
- // Propósito: Crear control para el registro de un
- // en la Universidad.
- //
- ============================================================*/
- using System;
- using System.ComponentModel;
- using System.Drawing;
- using System.Windows.Forms;
- namespace ElEstudiante.GUI
- {
- /// <summary>
- /// Control para el registro de un estudiante.
- /// </summary>
- public partial class ControlRegistroEstudiante : UserControl
- {
- #region Componentes
- /// <summary>
- /// Ventana principal de la aplicación.
- /// </summary>
- private Principal ventanaPrincipal;
- #endregion
- #region Propiedades
- /// <summary>
- /// Obtiene el apellido del estudiante.
- /// </summary>
- public String Apellido
- {
- get
- {
- return txtApellido.Text;
- }
- }
- /// <summary>
- /// Obtiene el código del estudiante.
- /// </summary>
- public String Codigo
- {
- get
- {
- return txtCodigo.Text;
- }
- }
- /// <summary>
- /// Obtiene el nombre del estudiante.
- /// </summary>
- public String Nombre
- {
- get
- {
- return txtNombre.Text;
- }
- }
- #endregion
- #region Constructores
- /// <summary>
- /// Crea control para el registro de un estudiante.
- /// </summary>
- /// <param name="principal">Componente padre de este diálogo.</param>
- public ControlRegistroEstudiante(Principal principal)
- {
- InitializeComponent();
- ventanaPrincipal = principal;
- }
- #endregion
- #region Eventos
- /// <summary>
- /// Registra un estudiante en la Universidad.
- /// </summary>
- /// <param name="sender">Objeto generador del evento.</param>
- /// <param name="e">Datos del evento.</param>
- private void btnRegistrar_Click(object sender, EventArgs e)
- {
- ventanaPrincipal.RegistrarEstudiante();
- }
- #endregion
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement