Forum
Bildirimler
Hepsini Temizle
Yazılım Genel
4
Yazılar
2
Üyeler
0
Reactions
516
Görüntüleme
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
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
Konu başlatıcı
En hızlı ve basit manada aşağıdaki gibi yazdırabilirsin.Saygılarımlapublic 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
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