form1.cs

来自「Encrypt and Decrypt with different algor」· CS 代码 · 共 50 行

CS
50
字号
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;

namespace EN11
{
    public partial class StartPage : Form
    {
        public StartPage()
        {
            InitializeComponent();
        }

        private void StartPage_Load(object sender, EventArgs e)
        {

        }

        private void buttEP_Click(object sender, EventArgs e)
        {
            ep_s1 step1 = new ep_s1();
            step1.ShowDialog();
        }

        private void buttdp_Click(object sender, EventArgs e)
        {
            dc_s1 step2 = new dc_s1();
            step2.ShowDialog();
        }

        private void butte_Click(object sender, EventArgs e)
                   {
            System.Diagnostics.Process.Start(Application.StartupPath + "\\EN2006.EXE");
        }

        private void buttd_Click(object sender, EventArgs e)
        {
            System.Diagnostics.Process.Start(Application.StartupPath + "\\DE2006.EXE");
        }

        private void bctt_Click(object sender, EventArgs e)
        {
            MessageBox.Show("Author :- Hashan Madhubhashana Chandrapala \n Tel :- +94112844074 \n Mobile :- +94716844071  \n E-Mail :- hashanm@gmail.com", "ENC11");
        }
    }
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?