Files
GPW/GPW_Smart/WebUserControls/mod_opzTimbratura.ascx.cs
T
2016-12-13 17:53:27 +01:00

29 lines
720 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace GPW_Smart.WebUserControls
{
public partial class mod_opzTimbratura : System.Web.UI.UserControl
{
protected void Page_Load(object sender, EventArgs e)
{
}
public event EventHandler ev_reqAbilitaAll;
/// <summary>
/// abilita entrambi i buttons...
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
protected void btnAbilitaFull_Click(object sender, EventArgs e)
{
ev_reqAbilitaAll?.Invoke(this, new EventArgs());
}
}
}