예제 #1
0
 /// <summary>
 /// Gets the automaton real character
 /// </summary>
 /// <param name="c">The character to convert</param>
 /// <returns>A string with the automaton real character</returns>
 private void BrowseBtn_Click(object sender, EventArgs e)
 {
     OpenFileDialog OFD = new OpenFileDialog();
     stringViewer.Visible = false;
     if (OFD.ShowDialog() == DialogResult.OK)
     {
         Tokenizer tk = new Tokenizer(OFD.FileName, this);
     }
     GenerateBtn.Enabled = true;
     stringViewer.Visible = true;
 }