KRY-0x02/Form1.cs
2019-11-20 10:02:41 +01:00

53 lines
956 B
C#

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 KRY_0x02
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
public string getpath(TextBox t)
{
string path = t.Text;
return path;
}
//Bitmap my_bitmap = new Bitmap(getpath(textBox1));
Color pixel;
int int_value;
//for (int i = 0; i<my_bitmap.Witdh - 1; i++)
//{
//}
private void button1_Click(object sender, EventArgs e)
{
// encrypt
}
}
class do_a_crypto
{
public string putthere()
{
return "";
}
public string gimme()
{
return "";
}
}
}