New to Telerik UI for WinUIStart a free 30-day trial

Culture

Updated on Mar 26, 2026

The RadMaskedInput controls provide full globalization support out-of-the-box through the Culture property.

The next example declares two RadMaskedInput controls. The first one is used for entering Bulgarian currency - the culture is set to bg-BG. The second one is used for entering DateTime data and its culture is changed to de-DE.

Example 1: Defining the masked input controls

XAML
<StackPanel>
	<input:RadMaskedNumericInput x:Name="bulgarianCurrencyInput" Header="Bulgarian Currency" Mask="c4" />
	<input:RadMaskedDateTimeInput x:Name="germanDateTimeInput" Header="German DateTime" Mask="D" />
</StackPanel>

Example 2: Setting the Culture property

C#
this.bulgarianCurrencyInput.Culture = new System.Globalization.CultureInfo("bg-BG");
this.germanDateTimeInput.Culture = new System.Globalization.CultureInfo("de-DE");

WinUI RadMaskedInput RadMaskedInput Globalization

See Also

In this article
See Also
Not finding the help you need?
Contact Support