C# CheckBox Kullanımı Örnek
Bu yazımızda Visual C# programında checkBox nesnesinin kullanımı ile ilgili bir örnek yapacağız. Örneğimizde herhangi bir cafede kullanılabilecek bir sipariş fişi hazırlıyoruz. Program için forma 5 tane checkBox nesnesi bir tanede textBox nesnesi ekliyoruz. Hesapla butonuna aşağıdaki kodu yazarak programı bitiriyoruz. checkbox nesnesinin checked özelliğinden faydalanarak işaretlenen siparişlerin toplam fiyatını otomatik olarak hesaplatıp textbox nesnesine yazdırıyoruz.
Programın Ekran Görüntüleri:
Programın Visual C# kodları:
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; namespace checkbox_kullanımı_3 { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void button1_Click(object sender, EventArgs e) { int tutar=0; if (checkBox1.Checked) { tutar = tutar + 1; } if (checkBox2.Checked) { tutar = tutar + 5; } if (checkBox3.Checked) { tutar = tutar + 7; } if (checkBox4.Checked) { tutar = tutar + 6; } if (checkBox5.Checked) { tutar = tutar + 3; } textBox1.Text = tutar.ToString(); } } }
Bu Yazıya Tepkin Nedir?
+1
1
+1
+1
+1
1
+1
+1
+1
<< Önceki Yazı
Sonraki Yazı >>
c#, c# checkbox kullanımı, c# checkbox örneği, c# checkbox örnekleri, c# combobox if kullanımı, c# combobox selected item kullanımı, c# combobox selected value, c# combobox selected value kullanımı, c# combobox selectedindex kullanımı, c# combobox veri çekme, c# kodları, c# örneği, c# örnekleri, c# uygulamaları, combobox c# örnekleri, excel combobox kullanımı, visual c# kodları, visual c# örnekleri, visual c# program örnekleri