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