Advertisement
Fhernd

ControlRegistroEstudiante.cs

Aug 11th, 2014
2,086
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 2.37 KB | None | 0 0
  1. // ===++===
  2. //
  3. //  OrtizOL
  4. //
  5. // ===--===
  6. /*============================================================
  7. //
  8. // Clase: ControlRegistroEstudiante.cs
  9. //
  10. // Original en: http://goo.gl/aEJpty
  11. //
  12. // Propósito: Crear control para el registro de un
  13. // en la Universidad.
  14. //
  15. ============================================================*/
  16.  
  17. using System;
  18. using System.ComponentModel;
  19. using System.Drawing;
  20. using System.Windows.Forms;
  21.  
  22. namespace ElEstudiante.GUI
  23. {
  24.     /// <summary>
  25.     /// Control para el registro de un estudiante.
  26.     /// </summary>
  27.     public partial class ControlRegistroEstudiante : UserControl
  28.     {
  29.         #region Componentes
  30.         /// <summary>
  31.         /// Ventana principal de la aplicación.
  32.         /// </summary>
  33.         private Principal ventanaPrincipal;
  34.         #endregion
  35.  
  36.         #region Propiedades
  37.         /// <summary>
  38.         /// Obtiene el apellido del estudiante.
  39.         /// </summary>
  40.         public String Apellido
  41.         {
  42.             get
  43.             {
  44.                 return txtApellido.Text;
  45.             }
  46.         }
  47.         /// <summary>
  48.         /// Obtiene el código del estudiante.
  49.         /// </summary>
  50.         public String Codigo
  51.         {
  52.             get
  53.             {
  54.                 return txtCodigo.Text;
  55.             }
  56.         }
  57.         /// <summary>
  58.         /// Obtiene el nombre del estudiante.
  59.         /// </summary>
  60.         public String Nombre
  61.         {
  62.             get
  63.             {
  64.                 return txtNombre.Text;
  65.             }
  66.         }
  67.         #endregion
  68.  
  69.         #region Constructores
  70.         /// <summary>
  71.         /// Crea control para el registro de un estudiante.
  72.         /// </summary>
  73.         /// <param name="principal">Componente padre de este diálogo.</param>
  74.         public ControlRegistroEstudiante(Principal principal)
  75.         {
  76.             InitializeComponent();
  77.             ventanaPrincipal = principal;
  78.         }
  79.         #endregion
  80.  
  81.         #region Eventos
  82.         /// <summary>
  83.         /// Registra un estudiante en la Universidad.
  84.         /// </summary>
  85.         /// <param name="sender">Objeto generador del evento.</param>
  86.         /// <param name="e">Datos del evento.</param>
  87.         private void btnRegistrar_Click(object sender, EventArgs e)
  88.         {
  89.             ventanaPrincipal.RegistrarEstudiante();
  90.         }
  91.         #endregion
  92.     }
  93. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement