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