Quantcast
Channel: DropDownList Kullanımı
Browsing all 5 articles
Browse latest View live

DropDownList Kullanımı

List<Section> deneme = new List<Section>() { new Section() { SectionName = "Şube Seçiniz", ID = 0 } };            deneme.AddRange(repository.GetAllSection());...

View Article



Image may be NSFW.
Clik here to view.

DropDownList Kullanımı

copy paste yapmayın, Id yerine ID olabilir. Ayrıca ToList de eklemeniz gerekebilir;comboBox1.DataSource = (new List<Section>() { new Section() { SectionName="[Seçiniz]", ID = -1 }...

View Article

Image may be NSFW.
Clik here to view.

DropDownList Kullanımı

bu şekilde bir hata veriyor. Id yi buyuk yazınca kod komple hatalı oluyor 

View Article

Image may be NSFW.
Clik here to view.

DropDownList Kullanımı

comboBox1.DataSource = (new List<Section>() { new Section() { SectionName="[Seçiniz]", Id = -1 } }).AddRange(repository.GetAllSection()); gibi bir yol kullanabilirsiniz. Section entity'sinin...

View Article

DropDownList Kullanımı

Merhabalar Projemde DropDownList kullanıyorum ve verileri SQL den alıyoruz. Form yüklendiğinde DDL de ilk veri çıkıyor ben bunu istemiyorum ilk olarak "Seçiniz..." yazsın istiyorum bunu nasıl...

View Article

Browsing all 5 articles
Browse latest View live