WidgetManager.GetWidgetIds 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得與呼叫提供者應用程式相關聯之小工具的所有小工具識別碼。
public:
virtual Platform::Array <Platform::String ^> ^ GetWidgetIds() = GetWidgetIds;
winrt::array_view <winrt::hstring const&> GetWidgetIds();
public string[] GetWidgetIds();
function getWidgetIds()
Public Function GetWidgetIds () As String()
傳回
字串陣列,其中包含與呼叫提供者應用程式相關聯的小工具小工具識別碼。
實作
範例
下列程式碼範例示範如何擷取與呼叫小工具提供者相關聯的小工具識別碼。 在此範例中,識別碼會列印到主控台。
/*
* Sample output:
* This is the list of widgetIds associated with my app
* WidgetId - 0 : {5E3D9EDF-13A6-4185-902B-5997AE0411A5}
* WidgetId - 1 : {D8FEC89F-9A89-44B1-A52D-F04C515B0141}
*/
using namespace std;
using namespace winrt;
using namespace Microsoft::Windows::Widgets::Providers;
class WidgetManagerOperations
{
void PrintMyWidgetIds()
{
com_array<hstring> widgetIds = WidgetManager::GetDefault().GetWidgetIds();
cout << "This is the list of widgetIds associated with my app" << endl;
for (int i{}; i < widgetIds.size(); ++i)
{
hstring widgetId = widgetIds.at(i);
wcout << L"WidgetId - " << i << L" : " << widgetId.c_str() << endl;
}
}
}