How to enable extended scrolling in WPF CurrencyTextBox?
You can change the value by drag direction of mouse movements by setting EnableExtendScrolling as true in WPF CurrecyTextBox.
XAML
//Code Explains how to enable extended Scrolling in CurrencyTextBox <Grid> <syncfusion:CurrencyTextBox Name="Currency" Width="150" Height="70" MinValue="0" MaxValue="100" EnableExtendedScrolling="True"> </syncfusion:CurrencyTextBox> </Grid>
C#
//Code Explains how to enable extended Scrolling in CurrencyTextBox
namespace Currency
{
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
Currency.EnableExtendedScrolling = true;
}
}
}