27 references to CutCopyPasteHelper
System.Data (27)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\CutCopyPasteHelper.cs (14)
35
DependencyProperty.RegisterAttached("ChildContainers", typeof(HashSet<ICompositeView>), typeof(
CutCopyPasteHelper
), new UIPropertyMetadata(null));
85
HashSet<ICompositeView> containers = (HashSet<ICompositeView>)viewElement.GetValue(
CutCopyPasteHelper
.ChildContainersProperty);
89
viewElement.SetValue(
CutCopyPasteHelper
.ChildContainersProperty, containers);
100
childContainers = (HashSet<ICompositeView>)workflowViewElement.GetValue(
CutCopyPasteHelper
.ChildContainersProperty);
113
CutCopyPasteHelper
.AddChildContainer(parent, container);
187
CutCopyPasteHelper
.DoCut(modelItemsToCut, context);
237
CutCopyPasteHelper
.DoCopy(modelItemsToCopy, context);
309
HashSet<ModelItem> parentModelItems =
CutCopyPasteHelper
.GetSelectableParentModelItems(modelItem);
398
childElement =
CutCopyPasteHelper
.GetParentViewElement(container);
515
HashSet<ICompositeView> childrenContainers =
CutCopyPasteHelper
.GetChildContainers(pasteModelItem.View as WorkflowViewElement);
536
CutCopyPasteHelper
.workflowCallbackContext = null;
578
CutCopyPasteHelper
.workflowCallbackContext = context;
667
workflowData.Add(
CutCopyPasteHelper
.workflowCallbackContext);
688
foreach (Type disallowedType in
CutCopyPasteHelper
.DisallowedTypesForCopy)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\DragDropHelper.cs (1)
802
HashSet<ModelItem> parentModelItems =
CutCopyPasteHelper
.GetSelectableParentModelItems(modelItem);
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\View\DesignerView.Commands.cs (7)
752
e.CanExecute = !this.IsReadOnly &&
CutCopyPasteHelper
.CanCopy(this.Context);
760
CutCopyPasteHelper
.DoCopy(this.Context);
767
e.CanExecute = !this.IsReadOnly &&
CutCopyPasteHelper
.CanPaste(this.Context);
779
CutCopyPasteHelper
.DoPaste(this.Context, contextMenuTopLeft, sourceElement);
783
CutCopyPasteHelper
.DoPaste(this.Context);
792
e.CanExecute = !this.IsReadOnly &&
CutCopyPasteHelper
.CanCut(this.Context);
799
CutCopyPasteHelper
.DoCut(this.Context);
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\WorkflowItemPresenter.cs (2)
394
CutCopyPasteHelper
.RegisterWithParentViewElement(this);
716
IList<object> sortedList =
CutCopyPasteHelper
.SortFromMetaData(itemsToPaste, metaData);
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\WorkflowItemsPresenter.cs (2)
222
CutCopyPasteHelper
.RegisterWithParentViewElement(this);
853
IList<object> mergedItemsToPaste =
CutCopyPasteHelper
.SortFromMetaData(itemsToPaste, metaData);
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\WorkflowViewElement.cs (1)
155
this.SetValue(
CutCopyPasteHelper
.ChildContainersProperty, null);