C# ComboBox ile Dört İşlem
Bu örnek programımızda Visual C# programında ComboBox kullanarak dört işlem hesaplaması yapacağız. Öncelikle formumuza bir tane comboBox ve üç tane textBox nesnesi yerleştiriyoruz. Daha sonra hesaplama yapmak için combobox nesnesine çift tıklayarak comboBox1_SelectedIndexChanged özelliğini açıyoruz. Daha sonra if komutunu kullanarak toplama, çıkarma, çarpma ve bölme işlemlerini sırayla hesaplatarak sonucu sonuç 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 combobox_ile_dört_işlem { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void comboBox1_SelectedIndexChanged(object sender, EventArgs e) { double s1, s2, sonuc; s1 = Convert.ToDouble(textBox1.Text); s2 = Convert.ToDouble(textBox2.Text); if (comboBox1.SelectedIndex == 0) { sonuc = s1 + s2; textBox3.Text = sonuc.ToString(); } if (comboBox1.SelectedIndex == 1) { sonuc = s1 - s2; textBox3.Text = sonuc.ToString(); } if (comboBox1.SelectedIndex == 2) { sonuc = s1 * s2; textBox3.Text = sonuc.ToString(); } if (comboBox1.SelectedIndex == 3) { sonuc = s1 / s2; textBox3.Text = sonuc.ToString(); } } } }
Bu Yazıya Tepkin Nedir?
+1
+1
+1
+1
+1
+1
+1
1
<< Önceki Yazı
Sonraki Yazı >>
c# combobox ile dört işlem, c# combobox kullanımı, c# combobox seçilen değer, c# combobox selected item kullanımı, c# combobox selected item value, c# combobox selected value, c# combobox selected value kullanımı, c# combobox selectedindex kullanımı, c# combobox veri çekme, c# kodları, c# örnekleri, c# uygulamaları