Devexpress Türkçeleştirme .. Dil değiştirme
1)Program .cs doyasında aşğıdaki eklemeyi yapıyoruz
2)Dil dosyalarını debug klaösrüne kopyalıyoruz.
3)C:\Program Files (x86)\DevExpress 20.1\Components\Bin\Standard buraya
Tr dil klasörüne kopyalaç
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace AKINSOFTRAPOR
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
/// https://www.youtube.com/watch?v=3I0Aty9R_Ok&list=PLKnjBHu2xXNNbaN7oBIE8cSL28h-RMIl6&index=7
[STAThread]
static void Main()
{
Thread.CurrentThread.CurrentCulture = Thread.CurrentThread.CurrentUICulture = new System.Globalization.CultureInfo("tr-TR");
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new FormAna());
}
}
}
Hiç yorum yok