我想根据其他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]);
}
}
答案 0 :(得分:0)
在SelectionChanged
被触发时,Text
尚未更新(因此它保留了之前的值)。
您应该访问基础数据项以获取文本:
if(selClientCombo.SelectedItem == null) return;
List<string> echipamenteWCF =
client.getEchipament(selClientComo.SelectedItem.ToString()).ToList();
...
我认为ToString()
会解析显示文字。您始终可以将SelectedItem
强制转换为实际类型,并轻松访问其字符串属性(显示为Text)。您还可以访问SelectedValue
,条件是为ComboBox设置了一些SelectedValuePath
。