Csahrp Form Elemanları Kullanımı
Visual C# programında form elemanlarının nasıl kullanıldığını anlatan bir örnek. Bu programda textbox, radiobutton, checkbox, button ve label kullanımlarına örnekler verilmiştir. Ayrıca tasarımda kullanılan groupbox nesnesi de uygulamada kullanılmıştır. Form elemanlarına girilen bilgiler alınarak sonuçları alt kısımda birleştirilerek tekrar yazdırılıyor.
Formumuz yukarıdaki gibi. Bilgiler girildikten sonra bilgileri ekrana yazdır butonuna tıklanınca görüntü aşağıdaki gibi oluyor.
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 Genel_Uygulama { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void button1_Click(object sender, EventArgs e) { label5.Text = "Adım "+textBox1.Text+" "+textBox2.Text; string okul="", medeni=""; if (radioButton1.Checked) { okul = "İlköğretim"; } if (radioButton2.Checked) { okul = "Ortaöğretim"; } if (radioButton3.Checked) { okul = "Lise"; } if (radioButton4.Checked) { okul = "Üniversite"; } if (radioButton5.Checked) { okul = "Yüksek Lisans"; } if (radioButton6.Checked) { medeni = "Evli"; } if (radioButton7.Checked) { medeni = "Bekar"; } label6.Text = textBox3.Text+" yaşında "+okul+ " mezunu ve "+ medeni +"yim"; string h1="", h2="", h3="", h4="", h5="", h6=""; if (checkBox1.Checked) { h1 = "İnternet"; } if (checkBox2.Checked) { h2 = "Sinema"; } if (checkBox3.Checked) { h3 = "Futbol"; } if (checkBox4.Checked) { h4 = "Tenis"; } if (checkBox5.Checked) { h5 = "Basketbol"; } if (checkBox6.Checked) { h6 = "Tiyatro"; } label7.Text = "Hobilerim: "+h1+" "+h2+" "+h3+" "+h4+" "+h5+" "+h6; } } }
Bu Yazıya Tepkin Nedir?
+1
+1
+1
+1
+1
1
+1
1
+1
<< Önceki Yazı
Sonraki Yazı >>
c# console, c# console kodları, c# console örnek kodları, c# console örnekleri, c# console uygulamaları, C#Form Elemanları Kullanımı, csharp console, csharp console kodları, csharp console örnekleri, csharp console uygulamaları, Csharp Form Elemanları Kullanımı, visual c#, visual csharp