Raymond Chen has been writing about the archaeology of Windows internals since 2003, and this post is a perfect specimen of the genre: a small, precise history of a UI element nobody thinks about, building to a structural observation about how platforms decay. The scroll bar, as Chen tells it, had five mouse targets for its first two decades. Then Windows 2000 added a right-click context menu with seven options — four matching existing mouse ops, two matching keyboard ops, and one genuinely new: "Scroll Here," which let you right-click your destination directly instead of dragging the thumb. A small, elegant interaction that solved a real problem (long-distance scrolling) by letting you think about where you're going rather than where you're coming from. An even deeper shortcut arrived simultaneously: Shift+click on the scroll bar jumps the thumb to that position. No menu, no drag. Chen admits he didn't know about this one until recently, despite being a 30-year Windows veteran. This is the kind of discoverable-in-theory, invisible-in-practice affordance that made classic Win32 rich for power users and completely opaque for everyone else. The real payload is the final section. The Win32 scroll bar that carried these features is now a legacy artifact. Electron apps use Chromium's scroll bar (context menu gone, Shift+click survives). WPF XAML implements both. WinUI XAML — Microsoft's own modern framework — implements neither. Qt leaves it to each developer. The platform's own successor abandoned its parent's affordances. This is the lifecycle of platform knowledge: a feature gets added, exists for two decades in a form that rewards curiosity, then gets fragmented across incompatible reimplementations until the knowledge itself becomes unreliable. Chen's tone — wry, resigned, precise — is the sound of someone who has watched this cycle enough times to find it funny rather than tragic. The post is also a quiet argument about what gets lost when every framework rolls its own scroll bar. It's not just visual consistency. It's behavioral consistency — the contract between the user and the control. When that contract fragments, even power users stop investing in learning shortcuts, because the return on that investment becomes unpredictable. Chen closes with the perfect deadpan: "Great, so by the time I learn about a shortcut for scroll bars (Shift+click), the ecosystem has fragmented so much that I can't even rely on it working." That sentence is the thesis, the evidence, and the verdict.