ObservableCollection
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
|
ログイン
]
開始行:
&tag(ObservableCollection);
*目次 [#obceca1a]
#contents
*参考情報 [#k9315b6f]
*Tips [#v413c8d4]
**AddRangeがない [#y8cc45d0]
-[[ObservableCollection.AddRange : The Official Microsoft...
-次のような拡張を作り、使用する箇所でImportする。
#pre{{
public static class CollectionExtender
{
public static void AddRange<T>(this ObservableCol...
{
foreach (var addItem in addCollection)
{
collection.Add(addItem);
}
}
}
}}
-ObservableCollectionにAddRangeできるようになる。
#pre{{
ObservableCollection<Person> persons = new Observable...
List<Person> otherPersons = new List<Person>() {new P...
persons.AddRange(otherPersons);
}}
終了行:
&tag(ObservableCollection);
*目次 [#obceca1a]
#contents
*参考情報 [#k9315b6f]
*Tips [#v413c8d4]
**AddRangeがない [#y8cc45d0]
-[[ObservableCollection.AddRange : The Official Microsoft...
-次のような拡張を作り、使用する箇所でImportする。
#pre{{
public static class CollectionExtender
{
public static void AddRange<T>(this ObservableCol...
{
foreach (var addItem in addCollection)
{
collection.Add(addItem);
}
}
}
}}
-ObservableCollectionにAddRangeできるようになる。
#pre{{
ObservableCollection<Person> persons = new Observable...
List<Person> otherPersons = new List<Person>() {new P...
persons.AddRange(otherPersons);
}}
ページ名: