-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathKullaniciEkle.cs
64 lines (60 loc) · 1.93 KB
/
KullaniciEkle.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace KütüphaneTakipProgramı
{
public partial class KullaniciEkle : Form
{
public KullaniciEkle()
{
InitializeComponent();
}
private void btnKullaniciKayit_Click(object sender, EventArgs e)
{
baglanti con = new baglanti();
if (resimYol == null)
{
MessageBox.Show("Lütfen Bir Fotoğraf Seçiniz");
}
else
{
FileStream fs = new FileStream(resimYol, FileMode.Open, FileAccess.Read);
BinaryReader br = new BinaryReader(fs);
byte[] resim = br.ReadBytes((int)fs.Length);
br.Close();
fs.Close();
con.kullaniciEkle(txtKadi.Text, txtParola.Text, txtAd.Text, txtSoyad.Text, resim);
txtKadi.Clear();
txtParola.Clear();
txtAd.Clear();
txtSoyad.Clear();
picBoxResim.Hide();
}
}
private void btnIptal_Click(object sender, EventArgs e)
{
Giris giris = new Giris();
giris.Show();
this.Hide();
}
string resimYol;
private void btnResimYukle_Click(object sender, EventArgs e)
{
OpenFileDialog foto = new OpenFileDialog();
foto.Filter = "JPG |*.jpg | PNG |*.png";
foto.Title = "Bir Fotoğraf Seçin";
if (foto.ShowDialog() == DialogResult.OK)
{
picBoxResim.Image = Image.FromFile(foto.FileName);
resimYol = foto.FileName.ToString();
}
}
}
}