我有一個列表框和一個文本框。我想處理它的關鍵事件,但它給我一個錯誤。listbox.itemsource = null;拋出異常wp7
<ListBox Name="lstSelectedNumber" Height="50" MaxHeight="120" VerticalAlignment="Top" Grid.Column="1" SelectionChanged="lstSelectedNumber_SelectionChanged">
<ListBox.ItemContainerStyle>
<Style TargetType="ListBoxItem">
<Setter Property="Padding" Value="-15" />
<Setter Property="Margin" Value="0"/>
</Style>
</ListBox.ItemContainerStyle>
<ListBox.ItemsPanel>
<ItemsPanelTemplate>
<toolkit:WrapPanel>
</toolkit:WrapPanel>
</ItemsPanelTemplate>
</ListBox.ItemsPanel>
<ListBox.ItemTemplate>
<DataTemplate>
<StackPanel>
<TextBox x:Name="txtNumber" Text="{Binding Name,Mode=TwoWay}" IsEnabled="{Binding IsEnabled,Mode=TwoWay}" Background="Transparent" Foreground="{StaticResource ContactSelectorBrush}" Style="{StaticResource DialNumberStyle}" FontSize="24" KeyUp="txtNumber_KeyUp">
<TextBox.CaretBrush>
<SolidColorBrush Color="{StaticResource CaretBrush}" />
</TextBox.CaretBrush>
</TextBox>
</StackPanel>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
private void txtNumber_KeyUp(object sender, KeyEventArgs e)
{
TextBox txtbox = sender as TextBox;
if (txtbox.Text.Contains(';'))
{
lstSelectedNumber.ItemsSource = null;
// My Application Got crashed at this point when i assign nullto item source
lstSelectedNumber.ItemsSource = lstContactModel;
}
是否有任何替代,我更新的集合是該列表框的itemsource。請告訴我任何解決方法。
你看到什麼異常? –