1 instantiation of DesignerAction
System.Workflow.ComponentModel (1)
AuthoringOM\Design\ActivityDesigner.cs (1)
466DesignerAction designerAction = new DesignerAction(this, i, error.ErrorText, AmbientTheme.ConfigErrorImage);
13 references to DesignerAction
System.Workflow.ComponentModel (13)
AuthoringOM\Design\ActivityDesigner.cs (5)
65private List<DesignerAction> designerActions; 423protected internal virtual ReadOnlyCollection<DesignerAction> DesignerActions 429this.designerActions = new List<DesignerAction>(); 466DesignerAction designerAction = new DesignerAction(this, i, error.ErrorText, AmbientTheme.ConfigErrorImage); 1551protected internal virtual void OnExecuteDesignerAction(DesignerAction designerAction)
AuthoringOM\Design\DesignerHelpers.cs (3)
1518internal static DesignerVerb[] GetDesignerActionVerbs(ActivityDesigner designer, ReadOnlyCollection<DesignerAction> designerActions) 1563DesignerAction designerAction = designerVerb.Properties[DesignerUserDataKeys.DesignerAction] as DesignerAction;
AuthoringOM\Design\DesignerInterfaces.cs (1)
67void AddDesignerActions(DesignerAction[] actions);
AuthoringOM\Design\XomlDesignerLoader.cs (4)
863extendedUIService.AddDesignerActions(new List<DesignerAction>(activityDesigner.DesignerActions).ToArray()); 898foreach (DesignerAction action in activityDesigner.DesignerActions) 923DesignerAction action = null; 924internal PropertyValueUIItemHandler(DesignerAction action)