/Docs/07-Implementacion/Source/trunk/EDUAR_Regular/EDUAR/EDUAR_UI/UserControls/Hora.ascx.cs

http://blpm.googlecode.com/ · C# · 33 lines · 26 code · 4 blank · 3 comment · 0 complexity · 9da5f7a928ff587c8ecbc23257c7d73b MD5 · raw file

  1. using System;
  2. using System.Web.UI;
  3. using System.Web.UI.WebControls;
  4. namespace EDUAR_UI.UserControls
  5. {
  6. public partial class Hora : UserControl
  7. {
  8. #region --[Propiedades]--
  9. /// <summary>
  10. /// textbox que contiene la hora.
  11. /// </summary>
  12. public TextBox hora
  13. {
  14. get { return txtHora; }
  15. set { txtHora = value; }
  16. }
  17. public String Text
  18. {
  19. get { return txtHora.Text; }
  20. set { txtHora.Text = value; }
  21. }
  22. #endregion
  23. #region --[Eventos]--
  24. protected void Page_Load(object sender, EventArgs e)
  25. {
  26. }
  27. #endregion
  28. }
  29. }