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

Localization

Updated on May 7, 2026

To localize RadMaskedEditBox to display text and messages in a specific language:

  • All required classes for localization are defined in Telerik.WinControls.UI.Localization namespace.

  • Start by creating a descendant of the RadMaskedEditBoxLocalizationProvider class.

  • Override the GetLocalizedString(string id) method and provide a translation for the label and user messages. If a translation is not provided, the default value will be returned. This behavior is guaranteed by the call to the base GetLocalizedString method in the default clause of the switch statement in the example.

Below is a sample implementation of an English localization provider:

C#
public class MyRadMaskedEditBoxLocalizationProvider : RadMaskedEditBoxLocalizationProvider
{
    public override string GetLocalizedString(string id)
    {
        switch (id)
        {
            case RadMaskedEditBoxStringId.CopyMenuItem: return "Copy";
            case RadMaskedEditBoxStringId.CutMenuItem: return "Cut";
            case RadMaskedEditBoxStringId.DeleteMenuItem: return "Delete";
            case RadMaskedEditBoxStringId.PasteMenuItem: return "Paste";
            case RadMaskedEditBoxStringId.SelectAllMenuItem: return "SelectAll";
        }

        return string.Empty;
    }
}

To apply the custom localization provider, instantiate and assign it to the current localization provider:

Assigning the Current Localization Provider

C#
RadMaskedEditBoxLocalizationProvider.CurrentProvider = new MyRadMaskedEditBoxLocalizationProvider();
Not finding the help you need?
Contact Support