我有一个绑定到ComboBox的数组。
我的问题是我找不到将默认ComboBox元素的方法发送到数组中的任何元素,即加载用户控件时它是空的。< / p>
这是否是由于我加载数组的方式(来自词典)?
XAML绑定:
<WrapPanel>
<ComboBox ItemsSource="{Binding Path=ExclusionDescriptions}" SelectedValue="{Binding Path=Description, Mode=TwoWay}" IsSynchronizedWithCurrentItem="True" SelectedIndex="0"/>
</WrapPanel>
代码:
public string[] ExclusionDescriptions
{
get
{
return GetDescriptionsAndEntityScope().Keys.ToArray();
}
}
使用:
private Dictionary<string, bool> GetDescriptionsAndEntityScope()
{
return GetDescriptionsAndEntityScope();
}