private void buttonOpenKanjiList_Click(object sender, EventArgs e) { OpenFileDialog ofd = new OpenFileDialog(); if (ofd.ShowDialog() == DialogResult.OK) { kanjis = Arbijd.GetKanjisFromTxt(ofd.FileName); } }
private void buttonOpenAnkiDeck_Click(object sender, EventArgs e) { OpenFileDialog ofd = new OpenFileDialog(); if (ofd.ShowDialog() == DialogResult.OK) { nihongoshark = Arbijd.GetAnkisFromTxt(ofd.FileName); } }