mirror of
https://github.com/SCToolsfactory/SCJMapper-V2.git
synced 2024-11-16 12:13:09 +00:00
26 lines
551 B
C#
26 lines
551 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace SCJMapper_V2
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Event class to automate selection,
|
|||
|
/// returns the selected items in the ActionTree
|
|||
|
/// </summary>
|
|||
|
public class ActionTreeEventArgs : EventArgs
|
|||
|
{
|
|||
|
public string SelectedAction { get; set; }
|
|||
|
public string SelectedCtrl { get; set; }
|
|||
|
|
|||
|
public ActionTreeEventArgs(string action, string ctrl )
|
|||
|
{
|
|||
|
SelectedAction = action;
|
|||
|
SelectedCtrl = ctrl;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
}
|