如何在Windows Phone 8.1 通用应用程序中使用搜索框控件?
How to use search box control in Windows Phone 8.1 universal apps?
如何在Windows Phone 8.1 通用应用程序中使用搜索框控件?当我尝试添加时,我收到一条错误消息:
SearchBox is not supported in a Windows Phone project.
MSDN 说 SearchBox 是
Not recommended for Universal Windows Platform apps.
改用AutoSuggestBox
https://msdn.microsoft.com/en-gb/library/windows/apps/windows.ui.xaml.controls.autosuggestbox.aspx
如果您仍想尝试 SearchBox
,请尝试 this post
中的答案
如何在Windows Phone 8.1 通用应用程序中使用搜索框控件?当我尝试添加时,我收到一条错误消息:
SearchBox is not supported in a Windows Phone project.
MSDN 说 SearchBox 是
Not recommended for Universal Windows Platform apps.
改用AutoSuggestBox
https://msdn.microsoft.com/en-gb/library/windows/apps/windows.ui.xaml.controls.autosuggestbox.aspx
如果您仍想尝试 SearchBox
,请尝试 this post