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