mirror of
https://github.com/jwetzell/qController.git
synced 2026-08-28 18:39:20 +00:00
Add Double Tap editing to new screen
This commit is contained in:
@@ -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);
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user