14 references to FlowSwitchDesigner
System.Activities.Core.Presentation (14)
System\Activities\Core\Presentation\DesignerMetadata.cs (1)
43FlowSwitchDesigner.RegisterMetadata(builder);
System\Activities\Core\Presentation\FlowchartExpressionAdorner.cs (2)
77Fx.Assert(adornedElement is FlowSwitchDesigner, "this.AdornedElement is either FlowDecisionDesigner or FlowSwitchDesigner"); 79modelItem = ((FlowSwitchDesigner)adornedElement).ModelItem;
System\Activities\Core\Presentation\FlowchartExpressionAutomationPeer.cs (2)
33Fx.Assert(this.Owner is FlowSwitchDesigner, "this.Owner should either be FlowDecisionDesigner or FlowSwitchDesigner."); 34expressionShown = ((FlowSwitchDesigner)this.Owner).ExpressionShown;
System\Activities\Core\Presentation\FlowSwitchDesigner.xaml.cs (9)
30DependencyProperty.Register("ExpressionButtonVisibility", typeof(Visibility), typeof(FlowSwitchDesigner)); 33DependencyProperty.Register("ExpressionButtonColor", typeof(Brush), typeof(FlowSwitchDesigner)); 36DependencyProperty.Register("ShowAllConditions", typeof(bool), typeof(FlowSwitchDesigner), 93BindingOperations.SetBinding(this, FlowSwitchDesigner.ShowAllConditionsProperty, showAllConditionsBinding); 117builder.AddCustomAttributes(type, new DesignerAttribute(typeof(FlowSwitchDesigner))); 264FlowSwitchDesigner designer = obj as FlowSwitchDesigner; 282private FlowSwitchDesigner designer; 287public FlowSwitchDesignerAnnotationVisualProvider(FlowSwitchDesigner designer)