0

我发现 Windows 8 文本框有一个属性“IsPredictionEnabled”。我知道它用于启用自动完成功能。但即使使用软键盘,设置此属性也无效。

如果我想让这个搜索文本框搜索 bing 并检索一些与搜索查询相对应的图像,该怎么做?

谢谢,

4

1 回答 1

0

最好使用这样的 cutsom 控件:

自动完成框WinRT

要从 bing 中获取搜索结果,您需要使用 bind api:

必应 API

要使用 AutCompleteBoxWinRT:

导入命名空间:

 xmlns:ab="using:AutoCompleteBox"

场地控制:

  <Grid Background="{StaticResource ApplicationPageBackgroundThemeBrush}">
    <ab:AutoCompleteBox Name="ABBox" Text="{Binding Text, Mode=TwoWay}" WatermarkText="Type something" />

    <Button Content="Test" VerticalAlignment="Top" Margin="0,100,0,0" Command="{Binding TestCommand}" />
</Grid>

您可以在此处下载示例应用程序:LINK

于 2013-01-11T16:57:59.917 回答