4 instantiations of FlowStep
System.Activities.Core.Presentation (4)
System\Activities\Core\Presentation\FlowchartDesigner.Container.cs (1)
351FlowStep flowStep = new FlowStep { Action = workflowElementToPaste, Next = null };
System\Activities\Core\Presentation\FlowchartDesigner.xaml.cs (3)
1644FlowStep flowStep = new FlowStep(); 1856FlowStep flowStep = new FlowStep(); 2130FlowStep step = new FlowStep() { Action = activity };
37 references to FlowStep
System.Activities (4)
System\Activities\Statements\Flowchart.cs (4)
344FlowStep step = node as FlowStep; 383FlowStep step = this.GetCurrentNode(context) as FlowStep;
System.Activities.Core.Presentation (33)
System\Activities\Core\Presentation\FlowchartDesigner.Container.cs (14)
135if (typeof(FlowStep).IsAssignableFrom(currentFlowElement.GetType())) 137FlowStep currentFlowStep = (FlowStep)currentFlowElement; 138FlowStep clonedFlowStep = (FlowStep)clonedFlowElements[currentFlowElement]; 190if (typeof(FlowStep).IsAssignableFrom(currentFlowElement.GetType())) 192FlowStep currentFlowStep = (FlowStep)currentFlowElement; 193FlowStep clonedFlowStep = (FlowStep)clonedFlowElements[currentFlowElement]; 287FlowStep step = element as FlowStep; 313if (item.ItemType.Equals(typeof(FlowStep))) 351FlowStep flowStep = new FlowStep { Action = workflowElementToPaste, Next = null };
System\Activities\Core\Presentation\FlowchartDesigner.ModelChangeReactions.cs (4)
129else if (typeof(FlowStep).IsAssignableFrom(e.ParentModelItem.ItemType) 353if (typeof(FlowStep).IsAssignableFrom(propertyChange.Owner.ItemType)) 411if (typeof(FlowStep).IsAssignableFrom(currentMI.ItemType)) 615if (typeof(FlowStep).IsAssignableFrom(srcModelItem.ItemType))
System\Activities\Core\Presentation\FlowchartDesigner.ModelChanges.cs (3)
58if (typeof(FlowStep).IsAssignableFrom(linkModelItem.ItemType)) 119if (typeof(FlowStep).IsAssignableFrom(flowElementMI.ItemType) 157if (typeof(FlowStep).IsAssignableFrom(srcFlowElementMI.ItemType))
System\Activities\Core\Presentation\FlowchartDesigner.xaml.cs (11)
264type = typeof(FlowStep); 423if (typeof(FlowStep).IsAssignableFrom(model.ItemType) 1644FlowStep flowStep = new FlowStep(); 1856FlowStep flowStep = new FlowStep(); 2130FlowStep step = new FlowStep() { Action = activity }; 2255Fx.Assert(typeof(FlowStep).IsAssignableFrom(sourceModelItem.ItemType), "The parent should be FlowNode"); 2264if (typeof(FlowStep).IsAssignableFrom(flowNodeModelItem.ItemType)) 2289if (sourceModelItem.ItemType == typeof(FlowStep)) 2348if (sourceModelItem.ItemType == typeof(FlowStep)) 2462if (typeof(FlowStep) == srcFlowNodeModelItem.ItemType) 2491if (droppedModelItem.ItemType == typeof(FlowStep))
System\Activities\Presentation\ActivityDesignerHelper.cs (1)
84flowStepContainer = typeof(FlowStep).IsAssignableFrom(p.ItemType) ? p : null;