Files
MoonPro.net/MP-Tablet/Controlli.aspx.cs
T
2018-03-13 18:30:57 +01:00

28 lines
678 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace MoonProTablet
{
public partial class Controlli : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
mod_controlliProd.eh_newVal += Mod_controlliProd_eh_newVal;
mod_controlliProd.eh_reset += Mod_controlliProd_eh_reset;
}
private void Mod_controlliProd_eh_reset(object sender, EventArgs e)
{
mod_elencoControlli.doUpdate();
}
private void Mod_controlliProd_eh_newVal(object sender, EventArgs e)
{
mod_elencoControlli.doUpdate();
}
}
}