Welcome to the .NET MAUI feedback portal. We’re happy you’re here! If you have feedback on how to improve the .NET MAUI, we’d love to hear it!>
Thanks for joining our community and helping improve Syncfusion products!
When changing the Value property of a SfNumericInput, the control can either underflow/overflow which causes the app to freeze.
To see what could have caused this, I have subscribed to the ValueChanged event:
private void SfNumericEntry_OnValueChanged(object sender, NumericEntryValueChangedEventArgs e)
{
Console.WriteLine($"{e.OldValue} / {e.NewValue}");
}
This is the console output:
Since OldValue and NewValue are constantly changing, the app freezes because the ValueChanged event keeps firing. Using Math.Round to a smaller number of decimal places before assigning the Value property did not help and the issue still remains.