对不起,我的英语不好。
我需要在c#Windows应用程序中添加Google搜索,因此当用户单击按钮应用程序将搜索查询发送给Google时,我在表单中添加了文本框和按钮。
如您所见,google的搜索文本框具有很好的自动完成功能。
有什么办法可以将自动完成功能添加到我的应用程序中吗?

最佳答案

是的,您可以查询URL:

http://suggestqueries.google.com/complete/search?client=firefox&q=YOURQUERY


例如,http://suggestqueries.google.com/complete/search?client=firefox&q=justin将返回:

["justin",["justin bieber","justin timberlake","justin tv","justin timberlake tour","justin boots","justin blackmon","justin baldoni","justin bieber twitter","justin long","justin moore"]]

09-04 19:12