Equivalent of ReloadData for NSCollectionView to redraw item views
问题 I have a toggle to change the font attributes. In my NSOutlineView, I call ReloadData to have everything re-render. However, how can I force NSCollectionView to re-render. I tried cvReader.NeedsLayout= true; cvReader.Layout(); cvReader.NeedsDisplay = true; cvReader.Display(); to no avail. Any hints much appreciated. Update. I also tried cvReader.NeedsDisplay = true; cvReader.Window.ViewsNeedDisplay = true; cvReader.Window.FlushWindowIfNeeded(); As well as assigning the content again. It feels