Jo Shields 3c1f479b9d Imported Upstream version 4.0.0~alpha1
Former-commit-id: 806294f5ded97629b74c85c09952f2a74fe182d9
2015-04-07 09:35:12 +01:00

25 lines
967 B
C#

//----------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
//----------------------------------------------------------------
namespace System.Activities.Presentation
{
using System.Collections.Generic;
using System.Windows;
using System.Activities.Presentation.Model;
using System.Activities.Presentation.View;
public interface ICompositeView
{
void OnItemMoved(ModelItem modelItem);
object OnItemsCut(List<ModelItem> itemsToCut);
object OnItemsCopied(List<ModelItem> itemsToCopy);
void OnItemsPasted(List<object> itemsToPaste, List<object> metadata, Point pastePoint, WorkflowViewElement pastePointReference);
void OnItemsDelete(List<ModelItem> itemsToDelete);
bool CanPasteItems(List<object> itemsToPaste);
bool IsDefaultContainer { get; }
TypeResolvingOptions DroppingTypeResolvingOptions { get; }
}
}