hi all,after the upgrade to the v2 beta or VS2010 - i'm not sure which one is causing the issue - a textblock in XAML as such <Popup x:Name="locationResultsPopUp" IsOpen="True" HorizontalAlignment="Left" VerticalAlignment="Top">
<ListBox x:Name="locationResults" Background="White" SizeChanged="locationResults_SizeChanged"
SelectionChanged="locationResults_SelectionChanged"
Visibility="Collapsed"
LostFocus="locationResults_LostFocus">
<ListBox.ItemTemplate>
<DataTemplate>
<TextBlock Foreground="#002969" FontSize="9" Text="{Binding [Descr]}"/>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
</Popup>no longer will display the value of the Descr key of an AddressCandidate. the list box will contain the correct number of items...i can tell by the height of it. however, what should be the Descr key of the AddressCandidates is not displayed on each line of the listbox. What has changed?