private void decryptToolStripMenuItem1_Click(object sender, EventArgs e) { ADFGVX adf = new ADFGVX(); adf.TextBoxValue = "DFAAVDGVFAVDAVAAVAFVDAADD"; adf.TextBox2Value = "orange"; adf.TextBox3Value = "water"; adf.TextLbl2Value = "Plain Text:"; adf.TextLbl1Value = "Cipher Text: "; adf.TextButtonValue = "Decrypt"; adf.Show(); }
private void cypherToolStripMenuItem1_Click(object sender, EventArgs e) { ADFGVX adf = new ADFGVX(); adf.TextBoxValue = "cryptography"; adf.TextBox2Value = "orange"; adf.TextBox3Value = "water"; adf.TextLbl1Value = "Plain Text:"; adf.TextLbl2Value = "Cipher Text: "; adf.TextButtonValue = "Encrypt"; adf.Show(); }