🙂 İNSANLARIN EN HAYIRLISI INSANLARA FAYDALI OLANDIR 🙂

Ramazan HABER / C# RMOS / ingilizce dil desteği ekleme

1-) C# RMOS - ingilizce dil desteği ekleme

 

 

video : https://www.youtube.com/watch?v=zoAmaJR3NJE

 

 

using DevExpress.Utils;

using System;

using System.Globalization;

using System.Threading;

using System.Windows.Forms;

namespace WindowsFormsApp6

{

    public partial class Form1 : Form

    {

        public Form1()

        {

            InitializeComponent();

        }

        private void btnEn_Click(object sender, EventArgs e)

        {

            ChangeLanguage("en");

        }

        private void btnTr_Click(object sender, EventArgs e)

        {

            ChangeLanguage("tr");

        }

        private void ChangeLanguage(string culture)

        {

            var ci = new CultureInfo(culture);

            Thread.CurrentThread.CurrentCulture = ci;

            Thread.CurrentThread.CurrentUICulture = ci;

            LocalizationHelper.SetCurrentCulture(new string[] { culture }); // devexpress için

            Language.Culture = ci;

            btnKaydet.Text = Language.kaydet;

        }

    }

}

 

 

 

 2025 Şubat 03 Pazartesi
 191