Files
XPS/XPS/detComm.aspx.cs
T
2017-02-14 17:30:46 +01:00

32 lines
874 B
C#

using System;
using System.Collections.Generic;
using System.Web;
using System.Web.UI;
using SteamWare;
public partial class detComm : UserPage //System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
mod_dettComm1.eh_selValore += new EventHandler(mod_dettComm1_eh_selValore);
mod_dettComm1.eh_resetSelezione += new EventHandler(mod_dettComm1_eh_resetSelezione);
mod_ULP1.eh_nuovoValore += new EventHandler(mod_ULP1_eh_nuovoValore);
}
void mod_ULP1_eh_nuovoValore(object sender, EventArgs e)
{
mod_dettComm1.doUpdateNoReset();
}
void mod_dettComm1_eh_resetSelezione(object sender, EventArgs e)
{
mod_ULP1.Visible = false;
}
void mod_dettComm1_eh_selValore(object sender, EventArgs e)
{
mod_ULP1.Visible = true;
mod_ULP1.setupControlli();
}
}