• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
Aucun tag

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

なろうブックマーク分析用ツールのPrism+WinUI3サンプル実装


Commit MetaInfo

Révision38955141bcf31d2bea27f39ed6ab43fd8b29da17 (tree)
l'heure2022-08-25 13:38:07
Auteuryoshy <yoshy.org.bitbucket@gz.j...>
Commiteryoshy

Message de Log

[MOD] INCCListSynchronizedSingleView 側で対応したため、コレクション追加操作を AddRange に戻した

Change Summary

Modification

--- a/TestNarou3.Domain/Model/Entity/BookmarkCategory.cs
+++ b/TestNarou3.Domain/Model/Entity/BookmarkCategory.cs
@@ -23,16 +23,7 @@ namespace TestNarou3.Domain.Model.Entity
2323 public void Refresh(IEnumerable<BookmarkCategoryRow> rows)
2424 {
2525 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);
3627 }
3728
3829 protected virtual void Dispose(bool disposing)