我希望我的组合框项目名称和值取自我的列表,当然我不希望我的视图模型保存组合框项目列表。
我有一个清单,a,b,c,d
public List<String> ComboList { get; set; }
...
ComboList = new List<String>();
ComboList.Add("A");
ComboList.Add("B");
ComboList.Add("C");
ComboList.Add("D");
和我的组合框
<ComboBox Margin="29,40,0,526" Width="212" Height="35" Grid.Row="1" ItemsSource="{Binding Path=ComboList, Mode=OneTime}" SelectedValuePath="Key" DisplayMemberPath="Value"></ComboBox>
但是它给了我一个空的ComboBox ...
最佳答案
删除SelectedValuePath
和DisplayMemberPath
属性。他们错了。