2

我正在使用 windowsphone7.5 版本的自动完成框工具包。它在 wp7.1 工具包中运行良好。

如果我使用带有内部控制边距的自动完成,它不能正常工作,它会在顶部显示结果,

在这里,我附上了自动完成错误的屏幕截图。

在此处输入图像描述

这是代码:

<Grid Grid.Row="1" Height="76" VerticalAlignment="Top">
  <toolkit:AutoCompleteBox VerticalAlignment="Bottom" Width="400" ValueMemberBinding="{Binding Title}" HorizontalAlignment="Left" Grid.Row="0" x:Name="acBox" Margin="10,0,10,0" ItemsSource="{Binding CategoryListitems}">
    <toolkit:AutoCompleteBox.ItemTemplate>
      <DataTemplate>
        <TextBlock Text="{Binding Title}"/>
      </DataTemplate>
    </toolkit:AutoCompleteBox.ItemTemplate>
  </toolkit:AutoCompleteBox>
</Grid>
4

0 回答 0