なろうブックマーク分析用ツールのPrism+WinUI3サンプル実装
Révision | 38955141bcf31d2bea27f39ed6ab43fd8b29da17 (tree) |
---|---|
l'heure | 2022-08-25 13:38:07 |
Auteur | yoshy <yoshy.org.bitbucket@gz.j...> |
Commiter | yoshy |
[MOD] INCCListSynchronizedSingleView 側で対応したため、コレクション追加操作を AddRange に戻した
@@ -23,16 +23,7 @@ namespace TestNarou3.Domain.Model.Entity | ||
23 | 23 | public void Refresh(IEnumerable<BookmarkCategoryRow> rows) |
24 | 24 | { |
25 | 25 | this.Rows.Clear(); |
26 | - | |
27 | - // due to the communication toolkit datagrid does not support range operations, | |
28 | - // we have to add the data row by row. | |
29 | - | |
30 | - //this.Rows.AddRange(rows); | |
31 | - | |
32 | - foreach (var row in rows) | |
33 | - { | |
34 | - this.Rows.Add(row); | |
35 | - } | |
26 | + this.Rows.AddRange(rows); | |
36 | 27 | } |
37 | 28 | |
38 | 29 | protected virtual void Dispose(bool disposing) |