Compartilhar via


ConnectedAnimation.TryStart Método

Definição

Sobrecargas

TryStart(UIElement)

Tenta iniciar a animação.

TryStart(UIElement, IIterable<UIElement>)

Tenta iniciar a animação no elemento de destino e os elementos secundários especificados.

TryStart(UIElement)

Tenta iniciar a animação.

public:
 virtual bool TryStart(UIElement ^ destination) = TryStart;
/// [Windows.Foundation.Metadata.Overload("TryStart")]
bool TryStart(UIElement const& destination);
[Windows.Foundation.Metadata.Overload("TryStart")]
public bool TryStart(UIElement destination);
function tryStart(destination)
Public Function TryStart (destination As UIElement) As Boolean

Parâmetros

destination
UIElement

O elemento que é animado em exibição.

Retornos

Boolean

bool

verdadeiro se a animação tiver sido iniciada; falso se a animação já tiver sido iniciada, se ela não estiver mais ativa ou se o elemento de destino for o mesmo que o elemento de origem.

Atributos

Aplica-se a

TryStart(UIElement, IIterable<UIElement>)

Tenta iniciar a animação no elemento de destino e os elementos secundários especificados.

public:
 virtual bool TryStart(UIElement ^ destination, IIterable<UIElement ^> ^ coordinatedElements) = TryStart;
/// [Windows.Foundation.Metadata.Overload("TryStartWithCoordinatedElements")]
bool TryStart(UIElement const& destination, IIterable<UIElement> const& coordinatedElements);
[Windows.Foundation.Metadata.Overload("TryStartWithCoordinatedElements")]
public bool TryStart(UIElement destination, IEnumerable<UIElement> coordinatedElements);
function tryStart(destination, coordinatedElements)
Public Function TryStart (destination As UIElement, coordinatedElements As IEnumerable(Of UIElement)) As Boolean

Parâmetros

destination
UIElement

O elemento que é animado em exibição.

coordinatedElements

IIterable<UIElement>

IEnumerable<UIElement>

A coleção de elementos secundários. Esses elementos reproduzirão uma animação de entrada para onde viajam ao lado do destino da animação conectada em uma "animação coordenada".

Retornos

Boolean

bool

verdadeiro se a animação tiver sido iniciada; falso se a animação já tiver sido iniciada, se ela não estiver mais ativa ou se o elemento de destino for o mesmo que o elemento de origem.

Atributos

Aplica-se a