59 lines
1.1 KiB
C#
59 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 C2P.WebUserControls
|
|
{
|
|
public partial class mod_displayHor : System.Web.UI.UserControl
|
|
{
|
|
protected void Page_Load(object sender, EventArgs e)
|
|
{
|
|
|
|
}
|
|
/// <summary>
|
|
/// etichetta
|
|
/// </summary>
|
|
public string etichetta
|
|
{
|
|
get
|
|
{
|
|
return lblLab.Text;
|
|
}
|
|
set
|
|
{
|
|
lblLab.Text = value;
|
|
}
|
|
}
|
|
/// <summary>
|
|
/// valore
|
|
/// </summary>
|
|
public string valore
|
|
{
|
|
get
|
|
{
|
|
return lblVal.Text;
|
|
}
|
|
set
|
|
{
|
|
lblVal.Text = value;
|
|
}
|
|
}
|
|
/// <summary>
|
|
/// valore
|
|
/// </summary>
|
|
public string toolTipVal
|
|
{
|
|
get
|
|
{
|
|
return lblVal.ToolTip;
|
|
}
|
|
set
|
|
{
|
|
lblVal.ToolTip = value;
|
|
}
|
|
}
|
|
}
|
|
} |