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