Articles in this section
Category / Section

How to enable extended scrolling in WPF CurrencyTextBox?

1 min read

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;
     }
  }
}

 

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please sign in to leave a comment
Access denied
Access denied