Device.BeginInvokeOnMainThread(Action) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
警告
Use BindableObject.Dispatcher.Dispatch() instead.
在裝置主 (UI) 執行緒上叫用動作。
public:
static void BeginInvokeOnMainThread(Action ^ action);
[System.Obsolete("Use BindableObject.Dispatcher.Dispatch() instead.")]
public static void BeginInvokeOnMainThread (Action action);
[<System.Obsolete("Use BindableObject.Dispatcher.Dispatch() instead.")>]
static member BeginInvokeOnMainThread : Action -> unit
Public Shared Sub BeginInvokeOnMainThread (action As Action)
參數
- action
- Action
要叫用的動作
- 屬性
備註
此範例示範如何在主執行緒上設定標籤的文字,例如回應非同步事件。
Device.BeginInvokeOnMainThread (() => {
label.Text = "Async operation completed";
});