18 references to ActivityDesigner
System.Data (18)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\ActivityDesigner.cs (5)
39DependencyProperty.Register("Icon", typeof(DrawingBrush), typeof(ActivityDesigner), new UIPropertyMetadata(null)); 41internal static readonly DependencyProperty ActivityDelegatesProperty = DependencyProperty.Register("ActivityDelegates", typeof(ObservableCollection<ActivityDelegateInfo>), typeof(ActivityDesigner)); 43internal static readonly DependencyProperty HasActivityDelegatesProperty = DependencyProperty.Register("HasActivityDelegates", typeof(bool), typeof(ActivityDesigner)); 49DefaultStyleKeyProperty.OverrideMetadata(typeof(ActivityDesigner), new FrameworkPropertyMetadata(typeof(ActivityDesigner)));
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\DesignerMetadata.cs (1)
30builder.AddCustomAttributes(typeof(Activity), new DesignerAttribute(typeof(ActivityDesigner)));
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\ExpandButtonVisibilityConverter.cs (3)
39ActivityDesigner designer = viewElement as ActivityDesigner; 45!viewElement.Collapsible || !(viewElement is ActivityDesigner))
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\View\DesignerView.Commands.cs (1)
853this.areBreakpointServicesEnabled() && (this.contextMenuTarget is ActivityDesigner) ?
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\View\TreeView\TreeViewItemModelItemViewModel.cs (5)
288private static DrawingBrush GetIconFromUnInitializedDesigner(ActivityDesigner designer) 352ActivityDesigner designer = null; 358designer = workflowViewService.CreateDetachedViewElement(this.VisualValue) as ActivityDesigner; 365designer = this.VisualValue.View as ActivityDesigner; 368designer = service.GetView(this.VisualValue) as ActivityDesigner;
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\View\ViewUtilities.cs (1)
64return viewType == typeof(ActivityDesigner);
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\View\WorkflowViewService.cs (2)
152if (type.IsGenericType && Type.Equals(designerType, typeof(ActivityDesigner))) 227(typeof(ActivityDesigner) != designerType || ActivityDelegateUtilities.HasActivityDelegate(modelItem.ItemType)) &&