I made a control for selecting Date. you can increase or decrease Day,Month or year just by Scrolling MouseWheel. but when I put this control in ScrollViewer MouseWheel will scroll ScrollViewer and MyControl not work properly. I have searched a lot to prevent ScrollViewer from handling MouseWheel but I couldn't.
this is my Xaml:
<ScrollViewer>
<StackPanel>
some other elements...
<controls:DateTimeSelect Width="400" Value="{x:Static system:DateTime.Now}"/>
some other elements...
</StackPanel>
</ScrollViewer>