Open JosefNemec opened 3 years ago
Is this causing the same behavior in full screen mode? I have a similar behavior as issue #1635 in fullscreen when scrolling left to right or up and down it will sometimes shift around between different rows or columns when it shouldn't.
WPF doesn't really allow proper implementation of custom virtualization panels with groping support. There's a ton issues trying to hack around inaccessible internal properties and methods we need to override (not even talking about weird bugs in WPF layout system). Current solution "works", but it's painful to maintain.
The best solution would be to simple implement custom control for Grid view that would give us complete control over the whole layout system. This would also make it easier to fix issues like #2493 and would make custom scrolling (smooth) easier and better to implement.
Possibly also use this implementation to change tile panel in Fullscreen mode.