Hi,
For example, see the code below. The RadMaskedTextInput will prevent the scrollwheel working on the outer ScrollViewer. Is there an option to make it pass scroll wheel action to its parent?
Regards,
Bayram
For example, see the code below. The RadMaskedTextInput will prevent the scrollwheel working on the outer ScrollViewer. Is there an option to make it pass scroll wheel action to its parent?
Regards,
Bayram
<
ScrollViewer
VerticalScrollBarVisibility
=
"Auto"
>
<
StackPanel
>
<
telerik:RadMaskedTextInput
IsClearButtonVisible
=
"False"
Mask
=
""
Value
=
"Some text"
Margin
=
"5,5,5,0"
HorizontalAlignment
=
"Stretch"
InputBehavior
=
"Insert"
/>
<
TextBlock
Text
=
"Test"
Height
=
"200"
VerticalAlignment
=
"Center"
TextAlignment
=
"Center"
/>
<
telerik:RadMaskedTextInput
IsClearButtonVisible
=
"False"
Mask
=
""
Value
=
"Put the mouse here and use the scrollwheel, it doesnt scroll"
Margin
=
"5,5,5,0"
HorizontalAlignment
=
"Stretch"
InputBehavior
=
"Insert"
/>
<
TextBlock
Text
=
"Put the mouse here and use the scrollwheel, it scrolls"
Height
=
"200"
VerticalAlignment
=
"Center"
TextAlignment
=
"Center"
/>
</
StackPanel
>
</
ScrollViewer
>