I am trying to force my forms to use arabic format like displaying (1-2-3-4-..,etc) numbers as (٠ , ١ , ٢ , ٣ , ٤ , ٥ , ٦ , ٧ , ٨ , ٩) in all areound my forms no matter if it is Textbox
,orlables
or whatever it is
I searched and found a lout of question talking about this issue most of them not working and the other I believe are not seems to be good answer like the accepted answer here and as shown below what I have tried on form loading which has no effect on my issue
and here is an accepted answer that says that cultureinfo will not help is it right ?? because I do not think that answer is right
so please if someone can help me
private void F0102_Load(object sender, EventArgs e)
{
CultureInfo ar_culture = new CultureInfo("ar-SA");
Thread.CurrentThread.CurrentCulture = ar_culture;
Thread.CurrentThread.CurrentUICulture = ar_culture;
}