ConnectedAnimation.TryStart 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
TryStart(UIElement) |
嘗試啟動動畫。 |
TryStart(UIElement, IIterable<UIElement>) |
嘗試在目的地專案和指定的次要元素上啟動動畫。 |
TryStart(UIElement)
嘗試啟動動畫。
public:
virtual bool TryStart(UIElement ^ destination) = TryStart;
bool TryStart(UIElement const& destination);
/// [Windows.Foundation.Metadata.Overload("TryStart")]
bool TryStart(UIElement const& destination);
public bool TryStart(UIElement destination);
[Windows.Foundation.Metadata.Overload("TryStart")]
public bool TryStart(UIElement destination);
function tryStart(destination)
Public Function TryStart (destination As UIElement) As Boolean
參數
- destination
- UIElement
以動畫顯示到檢視中的專案。
傳回
Boolean
bool
如果動畫已啟動,則為true;如果動畫已啟動,則為false,如果動畫已不再使用,或目的地元素與來源元素相同。
- 屬性
適用於
TryStart(UIElement, IIterable<UIElement>)
嘗試在目的地專案和指定的次要元素上啟動動畫。
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
參數
- destination
- UIElement
以動畫顯示到檢視中的專案。
- coordinatedElements
次要專案的集合。 這些專案會播放進入動畫,其會與「協調動畫」中的連線動畫目標一起移動。
傳回
Boolean
bool
如果動畫已啟動,則為true;如果動畫已啟動,則為false,如果動畫已不再使用,或目的地元素與來源元素相同。
- 屬性
Windows 需求
裝置系列 |
Windows 10 Creators Update (已於 10.0.15063.0 引進)
|
API contract |
Windows.Foundation.UniversalApiContract (已於 v4.0 引進)
|