共用方式為


IWidgetProvider.DeleteWidget(String, String) 方法

定義

通知 Widget 提供者,例如當使用者從小工具主機移除小工具時,它支援的其中一個小工具已被刪除。

public:
 void DeleteWidget(Platform::String ^ widgetId, Platform::String ^ customState);
void DeleteWidget(winrt::hstring const& widgetId, winrt::hstring const& customState);
public void DeleteWidget(string widgetId, string customState);
function deleteWidget(widgetId, customState)
Public Sub DeleteWidget (widgetId As String, customState As String)

參數

widgetId
String

Platform::String

winrt::hstring

要取消釘選之小工具的唯一識別碼。 小工具識別碼值是由 WidgetManager 動態產生。 小工具識別碼在建立小工具時維持不變,直到小工具刪除為止。 小工具識別碼是所有小工具與所有小工具提供者的唯一值。

customState
String

Platform::String

winrt::hstring

字串,包含已取消釘選之 Widget 的自訂狀態。

備註

一旦針對特定小工具識別碼呼叫這個方法,您的提供者就不會收到該小工具的任何其他要求。 在呼叫這個方法時,使用已刪除的 Widget 識別碼對 方法 WidgetManager 進行任何進一步的呼叫,將不會有任何作用。

適用於