在Windows Phone 8.1(WinRT XAML)中使用新的AutoSuggestBox控件時,我試圖始終打開建議框 - 即使在用戶單擊某個建議後也是如此。如何使Windows Phone 8.1中的AutoSuggestBox建議框保持打開狀態
我沒有問題開始意見箱開放以編程方式設置AutoSuggestBox.IsSuggestionListOpen = true;
然後我勾SuggestionChosen事件是這樣的:
private void AutoSuggestBox_SuggestionChosen(AutoSuggestBox sender, AutoSuggestBoxSuggestionChosenEventArgs args) {
sender.Text = args.SelectedItem.ToString();
sender.IsSuggestionListOpen = true;
}
但不幸的是,建議框中選擇一個項目之後仍然關閉,即使我將IsSuggestionListOpen設置爲true。
任何幫助讓它保持開放後選擇,將不勝感激。