as the list of bugs and limitations whith every standard virtualizing panel in WinRT is getting longer and more annoying for me, I need to write my own virtualizing panel which fit's all my needs.
The problem I'm facing right now is, there are only a few (mostly unanswered) questions regarding to WinRT panels I found on the internet. The only solutions I found were all targeting WPF and relying on IScrollInfo interface which is not available in WinRT.
I also thought of deriving from (Oriented)VirtualizingPanel, but they're all sealed or have internal constructors.
So my question is: Does anyone knows where to find a good tutorial on how to implement a custom virtualizing panel for a ListView/GridView in WinRT. Or am I doomed to write my complete whole ItemsControl implementation whith scroll handling and virtualization from scratch up? I mean it would be possible at all, but it's lot of work to do. I can't believe MS Devs think we aren't capable of writing performant virtualizing panels and therefore locking it all down.