Beispiel #1
0
 void tvActions_MouseUp(object sender, MouseEventArgs e)
 {
     _dragActionInfo = null;
 }
Beispiel #2
0
 void lvResult_MouseUp(object sender, MouseEventArgs e)
 {
     _dragActionInfo = null;
 }
Beispiel #3
0
        private static ActionElement GetActionElement(ActionArgCollection action)
        {
            ActionInfo info = new ActionInfo(action.AssemblyUrl, action.ClassName, action.ActionAttribute);

            return(new ActionElement(info));
        }
Beispiel #4
0
 void lstIndex_MouseUp(object sender, MouseEventArgs e)
 {
     _dragActionInfo = null;
 }
Beispiel #5
0
 public ActionElement(ActionInfo actionInfo)
 {
     _name       = actionInfo.ActionAttribute.Name;
     _actionInfo = actionInfo;
     _action     = _actionInfo.ToAction();
 }