I have a C++ UWP app that supports localization. The app has a textbox that shows digits. I have set the FlowDirection at the root frame level of the app to be right to left for Arabic locale and left to right for the other language depending on the current locale. In Arabic locale, the digits are automatically converted to Arabic instead of English ie European. How can I prevent this? ie. the digits need to be shown in English style in Arabic locale. I see that there is NumberSubstitution property in WPF where NumberSubstitution.Substitution can be specified as European like in the below link section Defining Substitution Rules.
Is there anything similar to NumberSubstitution in UWP?