Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
全部,
这里需要一些帮助..我有一个字符串数组,需要将它绑定到 ObservableCollection
提前致谢。
该类ObservableCollection<T>可以在构造函数上接收一个IEnumerable<T>。你可以像这样使用它:
ObservableCollection<T>
IEnumerable<T>
string[] items = ... ObservableCollection<string> observableItems = new ObservableCollection<string>(items);
编辑:如果您的阵列将来发生变化,您ObsevableCollection不会。如果您需要,请在您的问题中指定。
ObsevableCollection