/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
- using System;
- using System.Web.UI;
- using System.Web.UI.WebControls;
-
- namespace EDUAR_UI.UserControls
- {
- public partial class Hora : UserControl
- {
- #region --[Propiedades]--
- /// <summary>
- /// textbox que contiene la hora.
- /// </summary>
- public TextBox hora
- {
- get { return txtHora; }
- set { txtHora = value; }
- }
-
- public String Text
- {
- get { return txtHora.Text; }
- set { txtHora.Text = value; }
- }
- #endregion
-
- #region --[Eventos]--
- protected void Page_Load(object sender, EventArgs e)
- {
-
- }
- #endregion
- }
- }