次の方法で共有


SearchPaneSuggestionsRequest.SearchSuggestionCollection プロパティ

定義

現在のクエリの検索ウィンドウに表示する候補を取得します。 アプリは、この SearchSuggestionCollection オブジェクトに追加して、表示する候補を提供します。

public:
 property SearchSuggestionCollection ^ SearchSuggestionCollection { SearchSuggestionCollection ^ get(); };
/// [get: Windows.Foundation.Metadata.Deprecated("ISearchPaneSuggestionsRequest may be altered or unavailable for releases after Windows 10.", Windows.Foundation.Metadata.DeprecationType.Deprecate, 65536, Windows.ApplicationModel.Search.SearchContract)]
SearchSuggestionCollection SearchSuggestionCollection();
/// [get: Windows.Foundation.Metadata.Deprecated("ISearchPaneSuggestionsRequest may be altered or unavailable for releases after Windows 10.", Windows.Foundation.Metadata.DeprecationType.Deprecate, 65536, "Windows.ApplicationModel.Search.SearchContract")]
SearchSuggestionCollection SearchSuggestionCollection();
public SearchSuggestionCollection SearchSuggestionCollection { [Windows.Foundation.Metadata.Deprecated("ISearchPaneSuggestionsRequest may be altered or unavailable for releases after Windows 10.", Windows.Foundation.Metadata.DeprecationType.Deprecate, 65536, typeof(Windows.ApplicationModel.Search.SearchContract))] get; }
public SearchSuggestionCollection SearchSuggestionCollection { [Windows.Foundation.Metadata.Deprecated("ISearchPaneSuggestionsRequest may be altered or unavailable for releases after Windows 10.", Windows.Foundation.Metadata.DeprecationType.Deprecate, 65536, "Windows.ApplicationModel.Search.SearchContract")] get; }
var searchSuggestionCollection = searchPaneSuggestionsRequest.searchSuggestionCollection;
Public ReadOnly Property SearchSuggestionCollection As SearchSuggestionCollection

プロパティ値

表示する候補。 アプリは、この SearchSuggestionCollection オブジェクトに追加することで提案を提供します。

属性

注釈

重要

Windows 10以降の検索をアプリに実装するには、AutoSuggestBox を使用します。 詳細については、「 自動提案ボックス 」を参照してください。

Windows 10 以降のアプリでは、Windows.ApplicationModel.Search API (SearchPaneSearchContract) または SearchBox API を使用しないでください。

検索ウィンドウには、最大で 5 つの候補を表示できます。 さらに、使用する各区切り記号は候補の代わりに使用され、表示できる候補の数が減ります。

SearchSuggestionCollection オブジェクトを使用して、検索ウィンドウに表示するアプリ指定の候補と検索区切り記号を追加します。

suggestionsrequested イベント ハンドラーからを返すか、searchPaneSuggestionsRequestDeferral.complete を呼び出して提案の要求が完了すると、検索ウィンドウに searchSuggestionCollection に候補が表示されます。

適用対象

こちらもご覧ください