-
Notifications
You must be signed in to change notification settings - Fork 2
/
Form1.cs
102 lines (81 loc) · 2.63 KB
/
Form1.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
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 Pizzacı
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
}
private void groupBox1_Enter(object sender, EventArgs e)
{
}
private void checkBox4_CheckedChanged(object sender, EventArgs e)
{
label18.Text = checkBox6.Text;
}
private void Form1_Load(object sender, EventArgs e)
{
}
private void listBox4_SelectedIndexChanged(object sender, EventArgs e)
{
}
private void listBox1_SelectedIndexChanged(object sender, EventArgs e)
{
}
private void button1_Click_1(object sender, EventArgs e)
{
listBox1.Items.Add(textBox1.Text);
listBox2.Items.Add(textBox2.Text);
listBox3.Items.Add(textBox3.Text);
listBox4.Items.Add(comboBox1.Text);
listBox5.Items.Add(comboBox2.Text);
listBox6.Items.Add(label13.Text + " " + label14.Text + " " + label15.Text + " " + label16.Text + " " + label17.Text+" "+label18.Text);
}
private void button2_Click(object sender, EventArgs e)
{
textBox1.Clear();
textBox2.Clear();
textBox3.Clear();
comboBox1.Text = "";
comboBox2.Text = "";
label13.Text = "";
label14.Text = "";
label15.Text = "";
label16.Text = "";
label17.Text = "";
label18.Text = "";
}
private void checkBox1_CheckedChanged(object sender, EventArgs e)
{
label13.Text = checkBox1.Text;
}
private void checkBox2_CheckedChanged(object sender, EventArgs e)
{
label14.Text = checkBox2.Text;
}
private void checkBox3_CheckedChanged(object sender, EventArgs e)
{
label15.Text = checkBox3.Text;
}
private void checkBox6_CheckedChanged(object sender, EventArgs e)
{
label16.Text = checkBox4.Text;
}
private void checkBox5_CheckedChanged(object sender, EventArgs e)
{
label17.Text = checkBox5.Text;
}
}
}