예제 #1
0
 static void Main()
 {
     Application.EnableVisualStyles();
     Application.SetCompatibleTextRenderingDefault(false);
     instance = new Çeviri();
     Application.Run(instance);
 }
예제 #2
0
        //save button
        private void bunifuImageButton1_Click(object sender, EventArgs e)
        {
            Çeviri ceviri = new Çeviri();

            if (comboBox1.Text == "Türkçe" || comboBox1.Text == "Turkish" || comboBox1.Text == "التركية")
            {
                ini.Write("APP", "Language", "turkish");
            }
            else if (comboBox1.Text == "İngilizce" || comboBox1.Text == "English" || comboBox1.Text == "اللغة الإنجليزية")
            {
                ini.Write("APP", "Language", "english");
            }
            else if (comboBox1.Text == "Arapça" || comboBox1.Text == "Arabic" || comboBox1.Text == "العربية")
            {
                ini.Write("APP", "Language", "arapca");
            }

            read.saveChanges();

            Application.Restart();
        }