예제 #1
0
 private void Tsmi_about_Click(object sender, EventArgs e)
 {
     AboutBox about = new AboutBox();
     about.ShowDialog();
 }
예제 #2
0
        private void Tsmi_about_Click(object sender, EventArgs e)
        {
            string msg = "本程序只用于测试,仅供安全学习、研究所用,\n" +
                         "请勿用于非法用途,否则造成的一切后果自负。\n" +
                         "                                              by keepwn";

            //MessageBox.Show(msg, "About Altman", MessageBoxButtons.OK, MessageBoxIcon.Information);
            AboutBox about = new AboutBox();
            about.ShowDialog();
        }