将组合框的 ItemsSource 设置为整数数组?
将组合框的 ItemsSource 设置为整数数组?
Set ItemsSource of a ComboBox to an Array of Integers?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
将组合框的 ItemsSource 设置为整数数组?
Set ItemsSource of a ComboBox to an Array of Integers?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
我在将来自 ViewModel 的整数数组绑定到 ComboBox 时遇到了类似的问题。
这对我有用。
这是 XAML,我们将属性
ArrayOfIntegers
绑定到 ComboBox 的ItemsSource
这是隐藏的代码以及具有属性
ArrayOfIntegers
的 ViewModelI had a similar problem with binding an array of integers coming from a ViewModel to the ComboBox.
Here what worked for me.
Here is XAML, where we are binding the property
ArrayOfIntegers
toItemsSource
of the ComboBoxHere is the code behind and the ViewModel which has the property
ArrayOfIntegers
是的:
Yes: