SearchSuggestionsRequest.SearchSuggestionCollection 属性

定义

获取要显示在当前查询的搜索窗格或应用内搜索框中的建议。 应用通过将建议追加到此 SearchSuggestionCollection 对象来提供显示建议。

public:
 property SearchSuggestionCollection ^ SearchSuggestionCollection { SearchSuggestionCollection ^ get(); };
SearchSuggestionCollection SearchSuggestionCollection();
public SearchSuggestionCollection SearchSuggestionCollection { get; }
var searchSuggestionCollection = searchSuggestionsRequest.searchSuggestionCollection;
Public ReadOnly Property SearchSuggestionCollection As SearchSuggestionCollection

属性值

要显示的建议。 应用通过将建议追加到此 SearchSuggestionCollection 对象来提供建议。

注解

重要

若要在应用中实现Windows 10或更高版本的搜索,请使用 AutoSuggestBox。 有关详细信息 ,请参阅自动建议框

不应在适用于 Windows 10 或更高版本的应用中使用 Windows.ApplicationModel.Search API (SearchPaneSearchContract) 或 SearchBox API。

使用 SearchSuggestionCollection 对象追加应用提供的建议和搜索分隔符,以显示在搜索窗格或应用内搜索框中。

完成建议请求后,无论是通过从 SuggestionsRequested 事件处理程序返回,还是通过调用 Complete,搜索窗格或应用内搜索框将在 SearchSuggestionCollection 中显示建议。

适用于