[go: up one dir, main page]

0% found this document useful (0 votes)
4 views2 pages

Form 1

The document contains a C# Windows Forms application code for a form that allows users to encrypt and decrypt files. It includes functionality to select a file, encrypt it using a specified method, and handle exceptions with error messages. The form has buttons for loading the file, encrypting, and decrypting, but the button for a specific action is not implemented.

Uploaded by

babbba48
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
4 views2 pages

Form 1

The document contains a C# Windows Forms application code for a form that allows users to encrypt and decrypt files. It includes functionality to select a file, encrypt it using a specified method, and handle exceptions with error messages. The form has buttons for loading the file, encrypting, and decrypting, but the button for a specific action is not implemented.

Uploaded by

babbba48
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 2

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);
}
}
}
}

You might also like