Maybe (hopefully) I'm just being stupid.
Consider the xaml below. If the Window is small a scrollbar will appear in the ScrollView. The mousewheel controls scrolling - unless the mouse is over the tab header.
Is there some way to allow scrolling to work / not be swallowed by the RadTabControl
Regards David
<Grid> <ScrollViewer> <telerik:RadTabControl> <telerik:RadTabItem Header="One"> <StackPanel> <Label>One</Label> <Label>Two</Label> <Label>Three</Label> <telerik:RadButton Height="200" Width="200">BIG</telerik:RadButton> </StackPanel> </telerik:RadTabItem> </telerik:RadTabControl> </ScrollViewer></Grid>