我的XAML文件中有组合框。对于它的ItemsSource,我所拥有的是一组预定义的值。
<ComboBox ItemsSource={Binding MyCollection}
SelectedItem={Binding SelectedDataItem}
............../>
我想知道是否可以在WPF中提及这组值,而不是在ViewModel中对其进行硬编码。
<ComboBox ItemsSource={Binding ItemOne,ItemTwo,ItemThree}
SelectedItem={Binding SelectedDataItem}
............../>
有人可以帮忙吗?
答案 0 :(得分:0)
无论
<ComboBox>
<ComboBoxItem>Item1</ComboBoxItem>
<ComboBoxItem>Item2</ComboBoxItem>
<ComboBoxItem>Item3</ComboBoxItem>
</ComboBox>
或创建数组作为资源,并使用StatisResource引用它。