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 103 104 105 | 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 Pizza{ public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void buttonTemizle_Click(object sender, EventArgs e) { //Textbox değerlerini temizliyoruz textBoxAdSoyad.Text = ""; textBoxTelefon.Text = ""; textBoxAdres.Text = ""; //combobox değerlerini temizliyoruz comboBoxIcecek.Text = ""; comboBoxPizzaBoy.Text = ""; //numericupdown değerlerini temizliyoruz numericUpDownPizza.Value = 0; numericUpDownIcecek.Value = 0; //checkbox değerlerini temizliyoruz checkBoxSucuk.Checked = false; checkBoxSosis.Checked = false; checkBoxMantar.Checked = false; checkBoxKasar.Checked = false; checkBoxPeynir.Checked = false; checkBoxSebze.Checked = false; } private void Form1_Load(object sender, EventArgs e) { } private void buttonSiparisAl_Click(object sender, EventArgs e) { //ucret ve ekstra adında değişkenler tanımlıyoruz decimal ucret = 0; string ekstra = ""; //Eğer checkbox'lar seçili ise ekstra değişkenine aktarılıyor. if (checkBoxSucuk.Checked == true) { ekstra += "Sucuk";} if (checkBoxSosis.Checked == true) { ekstra += " - " + "Sosis";} if (checkBoxMantar.Checked == true) { ekstra += " - " + "Mantar" ; } if (checkBoxKasar.Checked == true) { ekstra += " - " + "Kaşar" ; } if (checkBoxPeynir.Checked == true) { ekstra += " - " + "Peynir" ; } if (checkBoxSebze.Checked == true) { ekstra += " - " + "Sebze" ; } //Seçili olan değeri ucret değişkenine adet bilgisi ile çarparak ekliyoruz. if (comboBoxPizzaBoy.Text =="Küçük") {ucret = numericUpDownPizza.Value * 10;} else if (comboBoxPizzaBoy.Text == "Orta") {ucret = numericUpDownPizza.Value * 15;} else if (comboBoxPizzaBoy.Text == "Büyük") {ucret = numericUpDownPizza.Value * 20;} if(comboBoxIcecek.Text=="2,5lt Coca Cola") {ucret += numericUpDownIcecek.Value * 5;} else if(comboBoxIcecek.Text=="1lt Fanta") {ucret += numericUpDownIcecek.Value * 3;} else if (comboBoxIcecek.Text == "1lt Sprite") {ucret += numericUpDownIcecek.Value * 3;} //Listbox'a değerleri yazdırıyoruz. listBoxAdSoyad.Items.Add(textBoxAdSoyad.Text); listBoxTelefon.Items.Add(textBoxTelefon.Text); listBoxAdres.Items.Add(textBoxAdres.Text); listBoxPizza.Items.Add(numericUpDownPizza.Value + " adet " + comboBoxPizzaBoy.Text); listBoxIcecek.Items.Add(numericUpDownIcecek.Value + " adet " + comboBoxIcecek.Text); listBoxEkstra.Items.Add(ekstra); listBoxUcret.Items.Add(ucret + "TL"); } private void buttonSiparisTemizle_Click(object sender, EventArgs e) {//Listbox'ları temizliyoruz. listBoxAdSoyad.Items.Clear(); listBoxTelefon.Items.Clear(); listBoxAdres.Items.Clear(); listBoxPizza.Items.Clear(); listBoxIcecek.Items.Clear(); listBoxEkstra.Items.Clear(); listBoxUcret.Items.Clear(); } }} |
Related Post
Kaydol:
Kayıt Yorumları (Atom)
Popular Posts
Get more great stuff like this delivered to your inbox
Ketegori
- ajax 1
- Bedava İnternet 4
- Bilgisayar 2
- blogger 3
- C# Dersleri 17
- carck 1
- Crack 4
- Facebook 7
- Hack 13
- hile 1
- indir 5
- instagram 12
- instaweb 2
- internetten para kazan 3
- login 1
- mobil 5
- Photoshop 12
- php 2
- program 5
- Programlama Dili 8
- Script 13
- seo 7
- site 1
- sonsurum 1
- Sosyal Medya 2
- stalk 1
- takipçi 1
- turkcell 2
- Web 10
- Webmaster 3
- whatsapp 1
- wordpress 3
Bu Blogda Ara
Arsip
- Mart 2019 (1)
- Aralık 2017 (2)
- Kasım 2017 (18)
- Ekim 2017 (32)
- Ağustos 2017 (3)
- Temmuz 2017 (7)
- Haziran 2017 (1)
- Eylül 2016 (1)
- Temmuz 2016 (23)
- Haziran 2016 (4)
- Mayıs 2016 (16)
Blogger tarafından desteklenmektedir.
0 Comments
EmoticonEmoticon