Culture
C#
1
Posts
1
Posters
0
Views
1
Watching
-
i have big probelm when you used Localiztion these my code: public Form1() { Thread.CurrentThread.CurrentCulture = new System.Globalization.CultureInfo("ar-eg"); Thread.CurrentThread.CurrentUICulture = new System.Globalization.CultureInfo("ar-eg"); InitializeComponent(); } Form2 f; private void Form1_Load(object sender, EventArgs e) { f = new Form2(); f.MdiParent = this; f.Show(); f.BringToFront(); } when Maximized Form(f) then Minimized and then Maximized Form(f) send to back and i can't see my form2(f)
123