Forum

textboxtakı verıyı ...
 
Bildirimler
Hepsini Temizle

textboxtakı verıyı datagrıdvıewa yazdırma

4 Yazılar
2 Üyeler
0 Likes
419 Görüntüleme
(@cemkilic)
Gönderiler: 396
Reputable Member
Konu başlatıcı
 

herkese merhaba ben textboxtakı bır verıyı datagrıdvıew a yazdırmak ıstıyorum bunun ıcın bıldıgınız bır kod var mı?

 
Gönderildi : 06/04/2015 15:22

(@eravse)
Gönderiler: 1753
Üye
 
En hızlı ve basit manada aşağıdaki gibi yazdırabilirsin.
 
Saygılarımla
 
 
public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }
        public List<Listem> liste = new List<Listem>();
        private void button1_Click(object sender, EventArgs e)
        {
            liste.Add(new Listem { Deger = textBox1.Text });
            GetValue();
        }
        private void GetValue()
        {
            dataGridView1.DataSource = null;
            dataGridView1.DataSource = liste;
            dataGridView1.Refresh();
        }
    }
    public class Listem
    {
        public string Deger { get; set; }
    }
 
 

ProfectSoft Yazılım ve Danışmanlık Hizmetleri
LogPusher & Bifyou E-Commerce System
www.profectsoft.com

 
Gönderildi : 06/04/2015 18:29

(@cemkilic)
Gönderiler: 396
Reputable Member
Konu başlatıcı
 

En hızlı ve basit manada aşağıdaki gibi yazdırabilirsin.
 
Saygılarımla
 
 
public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }
        public List<Listem> liste = new List<Listem>();
        private void button1_Click(object sender, EventArgs e)
        {
            liste.Add(new Listem { Deger = textBox1.Text });
            GetValue();
        }
        private void GetValue()
        {
            dataGridView1.DataSource = null;
            dataGridView1.DataSource = liste;
            dataGridView1.Refresh();
        }
    }
    public class Listem
    {
        public string Deger { get; set; }
    }
 
 

tessekur ederım erdem bey  

 
Gönderildi : 06/04/2015 18:55

(@eravse)
Gönderiler: 1753
Üye
 

Rica ederim iyi çalışmalar.

ProfectSoft Yazılım ve Danışmanlık Hizmetleri
LogPusher & Bifyou E-Commerce System
www.profectsoft.com

 
Gönderildi : 06/04/2015 19:40

Paylaş: