//------------------------------------------------------------------------------------------------ //プログラム終了時の処理 //------------------------------------------------------------------------------------------------ private void AppExit(object sender, EventArgs e) { MessageBox.Show("プログラムの終了処理を実行します。"); AESCryption aes = new AESCryption(); aes.SetAES(); Dispose(); }
public MainForm() { InitializeComponent(); //Config.xmlを作成、既にあれば処理をしない createConfigXML.CreateConfigXML(); //XMLファイルの復号 AESCryption aes = new AESCryption(); aes.DecAES(); SortXml(); InitDataSet(); }