WidgetManager.GetWidgetIds 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取与调用提供程序应用关联的小组件的所有小组件 ID。
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()
返回
一个字符串数组,其中包含与调用提供程序应用关联的小组件的小组件 ID。
实现
示例
以下代码示例演示如何检索与调用小组件提供程序关联的小组件 ID。 在此示例中,ID 将打印到控制台。
/*
* 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;
}
}
}