将组合框绑定到wpf </string>中的List <string>

时间:2014-09-18 15:11:39

标签: c# wpf xaml silverlight combobox

这是一款Silverlight应用程序。

我正在尝试将组合框绑定到字符串列表。它将显示我在加载应用程序之前存储在列表中的值,但我也有它,因此用户可以将字符串添加到列表中,并且这些更改不会反映在组合框中。我已经确认列表正在正确更新,而不是组合框。

以下代码的方式,当我在运行时更新列表然后单击组合框下拉列表时,整个silverlight应用程序消失。它不会抛出我在VS,调试输出或浏览器中看到的任何错误,包含silverlight应用程序的浏览器窗口就会变成空白。

 <UserControl x:Class="SilverlightSpeak.MainPage"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
             xmlns:local="clr-namespace:SilverlightSpeak.ViewModels"
    mc:Ignorable="d"
    d:DesignHeight="300" d:DesignWidth="400">

    <UserControl.Resources>
        <local:MainViewModel x:Key="MainViewModel"/>
    </UserControl.Resources>

    <Grid x:Name="LayoutRoot" Background="White" HorizontalAlignment="Center" VerticalAlignment="Top" DataContext="{StaticResource MainViewModel}">
        <Grid.RowDefinitions>
            <RowDefinition Height="23*"/>
            <RowDefinition Height="21*"/>
            <RowDefinition Height="Auto"/>
        </Grid.RowDefinitions>
        <Grid.ColumnDefinitions>
            <ColumnDefinition Width="193*"/>
            <ColumnDefinition Width="60*"/>
        </Grid.ColumnDefinitions>
        <Button Content="Add" Command="{Binding AddWordCommand}" HorizontalAlignment="Left" VerticalAlignment="Top" Width="75" Grid.Column="1"/>
        <TextBox Text="{Binding ModelSpeaker.newWord, Mode=TwoWay}" HorizontalAlignment="Left" Height="23" TextWrapping="Wrap" VerticalAlignment="Top" Width="120"/>
        <ComboBox  ItemsSource="{Binding ModelSpeaker.vocab, Mode=TwoWay}"  SelectedIndex="{Binding ModelSpeaker.nextWordToSpeak, Mode=TwoWay}" HorizontalAlignment="Left" VerticalAlignment="Top" Width="120" Grid.Row="1"/>
        <Button Content="Speak" Command="{Binding SpeakWordCommand}" CommandParameter="{Binding ModelSpeaker.nextWordToSpeak}" HorizontalAlignment="Left" VerticalAlignment="Top" Width="75" Grid.Row="1" Grid.Column="1" Grid.RowSpan="2"/>

    </Grid>
</UserControl>

我的xaml在这里做错了吗?我在我的MainViewModel和Speaker Model类中实现了INotifyPropertyChanged,并且当vocab更新时发送通知。我不知道如何解决这个问题。

提前感谢您的帮助。

1 个答案:

答案 0 :(得分:2)

为了在集合更改时获取更新,集合需要实现INotifyCollectionChangedList<T>没有实现这一点,但ObservableCollection<T>确实如此,并且就像List一样。

因此,请尝试将您的类型从List<string>更改为ObservableCollection<string>