Thousand Separators in .Net Maui Entry
How to use:
Add the ThousandSeparators.dll to your project's dependencies, and call UseThousandSeparators() method on MauiAppBuilder in MauiProgram.cs
Then in Xaml file declare a namespace like this:
xmlns:entries="clr-namespace:ThousandSeparators.Controls;assembly=ThousandSeparators"
<entries:CurrencyEntry
HorizontalOptions="Fill"
Keyboard="Numeric"
Placeholder="Amount"
UseSeparator="True" />
Hence Keyboard should be set to Numeric and UseSeparator must be True
