C# Class (Sınıf) yapısı ve List kullanımı ile ilgili örnek:
Örneğimiz için formumuzu aşağıdaki gibi tasarlayalım.
Formumuzda 3 adet TextBox, 1 adet DateTimePicker,1 adet CheckBox, 1 adet DataGridView, ve 3 adet Button denetimi bulunmakta.
Hastane.cs Kodları:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
internal class Hastane { string ad; string poliklinik; DateTime tarih; int kat; bool onay; public string Ad { get => ad; set => ad = value; } public string Poliklinik { get => poliklinik; set => poliklinik = value; } public DateTime Tarih { get => tarih; set => tarih = value; } public int Kat { get => kat; set => kat = value; } public bool Onay { get => onay; set => onay = value; } } |
Form1.cs Kodları:
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 |
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 sinav2_2 { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void Form1_Load(object sender, EventArgs e) { btnKaydet.Enabled = false; } Hastane hastane; List<Hastane> habers=new List<Hastane>(); private void btnYeni_Click(object sender, EventArgs e) { hastane = new Hastane(); txtAd.Clear(); txtKat.Clear(); txtPoliklinik.SelectedIndex = -1; chkOnay.Checked = false; dtpTarih.Value = DateTime.Now; btnKaydet.Enabled = true; } private void btnKaydet_Click(object sender, EventArgs e) { hastane.Ad = txtAd.Text; hastane.Kat = Convert.ToInt32(txtKat.Text); hastane.Poliklinik = txtPoliklinik.Text; hastane.Onay = chkOnay.Checked; hastane.Tarih=dtpTarih.Value; habers.Add(hastane); dataGridView1.DataSource= habers.ToList(); } DialogResult cevap; private void btnSil_Click(object sender, EventArgs e) { cevap = MessageBox.Show("Silme işlemini onaylıyormusunuz?", "Uyarı", MessageBoxButtons.YesNo, MessageBoxIcon.Warning); if(cevap == DialogResult.Yes) { habers.Remove(hastane); dataGridView1.DataSource = habers.ToList(); } } private void dataGridView1_CellContentClick(object sender, DataGridViewCellEventArgs e) { } private void dataGridView1_SelectionChanged(object sender, EventArgs e) { try { hastane = (Hastane)dataGridView1.SelectedRows[0].DataBoundItem; txtAd.Text =hastane.Ad.ToString(); txtKat.Text =hastane.Kat.ToString(); txtPoliklinik.Text =hastane.Poliklinik.ToString(); chkOnay.Checked =hastane.Onay; dtpTarih.Value=hastane.Tarih; } catch (Exception ex) { } } } } |
Add Comment