60 lines
1.1 KiB
C#
60 lines
1.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using System.Web.UI;
|
|
using System.Web.UI.WebControls;
|
|
|
|
namespace MoonProTablet.WebUserControls
|
|
{
|
|
public partial class cmp_disabled : System.Web.UI.UserControl
|
|
{
|
|
#region Public Properties
|
|
|
|
public string message
|
|
{
|
|
get
|
|
{
|
|
return lblMessage.Text;
|
|
}
|
|
set
|
|
{
|
|
lblMessage.Text = value.Trim();
|
|
}
|
|
}
|
|
|
|
public string subtitle
|
|
{
|
|
get
|
|
{
|
|
return lblSubtitle.Text;
|
|
}
|
|
set
|
|
{
|
|
lblSubtitle.Text = value.Trim();
|
|
}
|
|
}
|
|
|
|
public string title
|
|
{
|
|
get
|
|
{
|
|
return lblTitolo.Text;
|
|
}
|
|
set
|
|
{
|
|
lblTitolo.Text = value.Trim();
|
|
}
|
|
}
|
|
|
|
#endregion Public Properties
|
|
|
|
#region Protected Methods
|
|
|
|
protected void Page_Load(object sender, EventArgs e)
|
|
{
|
|
}
|
|
|
|
#endregion Protected Methods
|
|
}
|
|
} |