ViewExtensions.RotateXTo(VisualElement, Double, UInt32, Easing) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
傳回工作,這個工作會扭曲 所view
rotation
指定 之 的 VisualElement X 軸,其花費時間length
並使用 easing
。
public static System.Threading.Tasks.Task<bool> RotateXTo (this Microsoft.Maui.Controls.VisualElement view, double rotation, uint length = 250, Microsoft.Maui.Easing? easing = default);
static member RotateXTo : Microsoft.Maui.Controls.VisualElement * double * uint32 * Microsoft.Maui.Easing -> System.Threading.Tasks.Task<bool>
<Extension()>
Public Function RotateXTo (view As VisualElement, rotation As Double, Optional length As UInteger = 250, Optional easing As Easing = Nothing) As Task(Of Boolean)
參數
- view
- VisualElement
要在其上執行此方法的檢視。
- rotation
- Double
最終旋轉值。
- length
- UInt32
顯示轉換動畫的時間,單位為毫秒。 預設為 250。
- easing
- Easing
用於動畫的 easing 函式。
傳回
, Task 包含值 Boolean ,指出動畫是否已取消。
true
表示動畫已取消。
false
表示動畫已執行完成。
例外狀況
當 view
為 null
時擲回。