Add Double Tap editing to new screen

This commit is contained in:
2020-09-10 13:24:48 -05:00
parent 27fb706d36
commit 0fa5085410
7 changed files with 111 additions and 24 deletions
@@ -0,0 +1,22 @@
using System;
namespace qController.Events
{
public class CueEditArgs : EventArgs
{
public string CueID
{
get;
set;
}
public string Property
{
get;
set;
}
public string NewValue
{
get;
set;
}
}
}
@@ -0,0 +1,6 @@
using System;
namespace qController.Events
{
public delegate void SelectedCueEditedHandler(object source, CueEditArgs args);
}