MaskedCurrencyInput
The RadMaskedCurrencyInput represents the basic control that can be used to restrict the input of currency values.
In order to use the RadMaskedCurrencyInput control in your projects you have to add references to the following assemblies:
- Telerik.Licensing.Runtime
- Telerik.Windows.Controls
- Telerik.Windows.Controls.Input
-
Telerik.Windows.Data
You can find more info here.
With the 2025 Q1 release, the Telerik UI for WPF has a new licensing mechanism. You can learn more about it here.
Declaratively defined MaskedCurrencyInput
Here is a simple definition of a RadMaskedCurrencyInput control:
Example 1: Define RadMaskedCurrencyInput in XAML
You can further customize the RadMaskedCurrencyInput control's behavior by setting the IsCurrencySymbolVisible property to False thus hiding the culture specific currency symbol. By default this property is set to True.
Properties
- Value: A property of type decimal? that gets or set the current value of the control.
- AutoFillNumberGroupSeparators: A boolean property that gets or sets whether number group separators are auto filled in the mask.
- AutoFillZeros: A boolean property that gets or sets whether trailing zeros should be auto filled.
- AllowSkipPlaceholders: A boolean property that gets or sets whether input can skip placeholders.
- IsCurrencySymbolVisible: A boolean property that gets or sets whether the currency symbol is visible or not. Default value is True.
Data Binding
RadMaskedCurrencyInput's Value property is of type nullable decimal (decimal?) and you have to bind it to ViewModel's property of type decimal or nullable decimal (if you need to set null).
Binding to object is not support and may result in unpredictable behavior.
Example 2: Define the view model
Example 3: Binding the Value property
FormatString
You can further format the entered value by setting the FormatString property. It uses Standard Numeric Format Strings and Custom Numeric Format Strings to further format the Text property.
FormatString with Mask
When Mask property is set the FormatString property will be applied to the Text property of MaskedCurrencyInput control.
Example 4: Setting the FormatString property in Mask scenario
FormatString with No-Mask
In No-Mask scenario the FormatString property will be applied to the Value property of MaskedNumericInput control.