예제 #1
0
        private void btnArabic_Click(object sender, EventArgs e)
        {
            //Opens the Arabic converter and closes the current form
            Arabic_Converter frmArab = new Arabic_Converter();

            this.Hide();
            frmArab.Show();
        }
예제 #2
0
        private void arabicToolStripMenuItem_Click(object sender, EventArgs e)
        {
            //Closes the current form and opens the Arabic converter
            Arabic_Converter frmArabic = new Arabic_Converter();

            this.Close();
            frmArabic.Show();
        }