-
Notifications
You must be signed in to change notification settings - Fork 0
/
anasayfa.cs
55 lines (47 loc) · 1.36 KB
/
anasayfa.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
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 projetasarım
{
public partial class anasayfa : Form
{
public anasayfa()
{
InitializeComponent();
}
private void bunifuCards1_Paint(object sender, PaintEventArgs e)
{
}
private void bunifuThinButton21_Click(object sender, EventArgs e)
{
müsterikayıt musteri = new müsterikayıt();
musteri.Show();
}
private void bunifuThinButton22_Click(object sender, EventArgs e)
{
musteri_listeleleme listeleme = new musteri_listeleleme();
listeleme.Show();
}
private void bunifuThinButton23_Click(object sender, EventArgs e)
{
arac_kayit kayit = new arac_kayit();
kayit.Show();
}
private void bunifuThinButton24_Click(object sender, EventArgs e)
{
arac_listeleme listeleme = new arac_listeleme();
listeleme.Show();
}
private void bunifuThinButton25_Click(object sender, EventArgs e)
{
arac_kiralama kiralama = new arac_kiralama();
kiralama.Show();
}
}
}