ParallelActivityDesigner.CanMoveActivities(HitTestInfo, ReadOnlyCollection<Activity>) Método

Definição

Retorna um valor que indica se atividades filho da atividade associada ao ParallelActivityDesigner podem ser movidas.Returns a value that indicates whether child activities of the activity associated with the ParallelActivityDesigner can be moved.

public:
 override bool CanMoveActivities(System::Workflow::ComponentModel::Design::HitTestInfo ^ moveLocation, System::Collections::ObjectModel::ReadOnlyCollection<System::Workflow::ComponentModel::Activity ^> ^ activitiesToMove);
public override bool CanMoveActivities (System.Workflow.ComponentModel.Design.HitTestInfo moveLocation, System.Collections.ObjectModel.ReadOnlyCollection<System.Workflow.ComponentModel.Activity> activitiesToMove);
override this.CanMoveActivities : System.Workflow.ComponentModel.Design.HitTestInfo * System.Collections.ObjectModel.ReadOnlyCollection<System.Workflow.ComponentModel.Activity> -> bool
Public Overrides Function CanMoveActivities (moveLocation As HitTestInfo, activitiesToMove As ReadOnlyCollection(Of Activity)) As Boolean

Parâmetros

moveLocation
HitTestInfo

O HitTestInfo que descreve o local para o qual mover as atividades.The HitTestInfo that describes the location to move the activities to.

activitiesToMove
ReadOnlyCollection<Activity>

A coleção somente leitura Activity que contém as atividades a serem movidas.The Activity read-only collection that contains the activities to move.

Retornos

Boolean

true se as atividades puderem ser movidas da atividade pai; caso contrário, false.true if the activities can be moved from the parent activity; otherwise false.

Exemplos

O exemplo a seguir mostra como substituir o CanMoveActivities método para permitir a movimentação de atividades filho dentro do ParallelActivityDesigner .The following example shows how to override the CanMoveActivities method to allow the moving of child activities within the ParallelActivityDesigner.

public override bool CanMoveActivities(HitTestInfo moveLocation, ReadOnlyCollection<Activity> activitiesToMove)
{
    return false;
}
Public Overrides Function CanMoveActivities(ByVal moveLocation As HitTestInfo, ByVal activitiesToMove As ReadOnlyCollection(Of Activity)) As Boolean
    Return False
End Function

Aplica-se a