using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace WindowsFormsApplication15
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
private void button2_Click(object sender, EventArgs e)
{
OpenFileDialog of = new OpenFileDialog();
if (of.ShowDialog() == DialogResult.OK) {textBox1.Text= of.FileName; }
}
private void button3_Click(object sender, EventArgs e)
{
try
{
encryptfile ef = new encryptfile(textBox2.Text);
ef.encrypt(textBox1.Text);
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
private void button1_Click(object sender, EventArgs e)
{
private void button4_Click(object sender, EventArgs e)
{
try
{
encryptfile ef = new encryptfile(textBox2.Text);
ef.decrypt(textBox1.Text);
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
}
}
}