1-) C# DEVEXPRESS RMOS - türkçe dil desteği ekleme
1-) türkçe dil desteği ekleme
devexpress sitesinten -> support -> en soldaki search.. > Locazisation -> devexpress sürümüne göre indir -> inen zip i aç -> .dll leri refarance olarak ekle ve exe nin bulunduğu yere "tr" diye klasör oluştur -> sonrasında -> Program.cs nin içini bu şekilde düzenle
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Thread.CurrentThread.CurrentCulture = new CultureInfo("tr-TR");
Thread.CurrentThread.CurrentUICulture = new CultureInfo("tr-TR");
DevExpress.Skins.SkinManager.EnableFormSkins();
DevExpress.UserSkins.BonusSkins.Register();
Application.Run(new Form1());
}
2-) yardımcı linkler
https://www.youtube.com/watch?v=ursfqsR16M4
https://social.msdn.microsoft.com/Forums/tr-TR/185d77dd-6cdd-4ea0-9fd3-e8646f5432ff/devexpress-windows-form-da-trkeletirme?forum=csharptr
https://www.youtube.com/watch?v=k1P3hXaJWD0
3-) direk .exe nin olduğu yere tr diye klasör aç içine .dll leri at başka birşey yapmana gerek yok
// DİĞER
Thread.CurrentThread.CurrentUICulture = new System.Globalization.CultureInfo("tr-TR");
Thread.CurrentThread.CurrentCulture = new System.Globalization.CultureInfo("tr-TR");
//Thread.CurrentThread.CurrentUICulture = new System.Globalization.CultureInfo("en-US");
//Thread.CurrentThread.CurrentCulture = new System.Globalization.CultureInfo("en-US");