SelectionChanged Combobox WPF

时间:2015-10-11 12:29:44

标签: c# wpf wcf xaml combobox

我想根据其他ComboBox的选择来填充ComboBox。 两个组合框都使用WCF从数据库填充。 我的问题是,在第一次选择时它不起作用(仅在第二次选择之后它的工作和它首次选择的结果)。

XAML

<ComboBox 
   x:Name="selClientCombo" 
   SelectionChanged="listEchipamente" 
   IsEditable="True" 
   SelectedIndex="-1" 
   HorizontalAlignment="Left" 
   Margin="455,35,0,0" 
   VerticalAlignment="Top" 
   Width="215" 
   ItemsSource="{Binding Mode=OneWay}"/>
<ComboBox 
   x:Name="selEchipamentCombo" 
   HorizontalAlignment="Left" 
   Margin="457,65,0,0" 
   VerticalAlignment="Top" 
   Width="213" 
   ItemsSource="{Binding}"/>

  private void listEchipamente(object sender, SelectionChangedEventArgs e)
        {
            List<string> echipamenteWCF = client.getEchipament(selClientCombo.Text).ToList();

            MessageBox.Show(" Client Selected !");
            if (selEchipamentCombo.Items.Count >0)
            {
                selEchipamentCombo.Items.Clear();
            }
                for (int i = 0; i < echipamenteWCF.Count(); i++)
                {
                    selEchipamentCombo.Items.Add(echipamenteWCF[i]);
                }

            }

1 个答案:

答案 0 :(得分:0)

SelectionChanged被触发时,Text尚未更新(因此它保留了之前的值)。

您应该访问基础数据项以获取文本:

if(selClientCombo.SelectedItem == null) return;
List<string> echipamenteWCF = 
                   client.getEchipament(selClientComo.SelectedItem.ToString()).ToList();
...

我认为ToString()会解析显示文字。您始终可以将SelectedItem强制转换为实际类型,并轻松访问其字符串属性(显示为Text)。您还可以访问SelectedValue,条件是为ComboBox设置了一些SelectedValuePath