Gestione timer variabile in pedane
This commit is contained in:
@@ -42,6 +42,11 @@ namespace MP_MAG
|
||||
/// </summary>
|
||||
public event EventHandler eh_doReset;
|
||||
|
||||
/// <summary>
|
||||
/// Generico evento "stato editing"
|
||||
/// </summary>
|
||||
public event EventHandler eh_editing;
|
||||
|
||||
#endregion Public Events
|
||||
|
||||
#region Protected Properties
|
||||
@@ -393,6 +398,18 @@ namespace MP_MAG
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Chiamata evento editing
|
||||
/// </summary>
|
||||
public void raiseEditing()
|
||||
{
|
||||
// se qualcuno ascolta sollevo evento nuovo valore...
|
||||
if (eh_editing != null)
|
||||
{
|
||||
eh_editing(this, new EventArgs());
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Chiamata evento
|
||||
/// </summary>
|
||||
|
||||
Reference in New Issue
Block a user