Exemplo n.º 1
0
        private void buttonOpenKanjiList_Click(object sender, EventArgs e)
        {
            OpenFileDialog ofd = new OpenFileDialog();

            if (ofd.ShowDialog() == DialogResult.OK)
            {
                kanjis = Arbijd.GetKanjisFromTxt(ofd.FileName);
            }
        }
Exemplo n.º 2
0
        private void buttonOpenAnkiDeck_Click(object sender, EventArgs e)
        {
            OpenFileDialog ofd = new OpenFileDialog();

            if (ofd.ShowDialog() == DialogResult.OK)
            {
                nihongoshark = Arbijd.GetAnkisFromTxt(ofd.FileName);
            }
        }