Menu:

  Visual Studio 2022 Preview 2.1 ve Gelen Yenilikler
 WebMatrix ile Web Sitelerini Oluşturun, Özelleştirin ve Yayınlayın
 Visual Studio 2011 Developer Preview
 Programlama E-Kitap-3
 Programlama E-Kitap-2
 Visual Studio 2011 Developer Preview Training Kit Eğitim Seti

Sitede hangi programlama dillerini görmek istersiniz.


                                  
 Kullanılan Oy: 1304                 
Sonuçları Göster



ABDULKADİR diyorki:

access veri tabanından qr kod ile sorgulama yaparak kişi bilgilerini nasıl çekebiliriz

devamı için tıkla


Gokhan Yıldırım diyorki:

hocam merhaba, gelen Container.DataItem 'mı 2 ye ayırmak istesek yani küçük ve büyük resim olarak 2...

devamı için tıkla
Turgay diyorki:

Hocam öncelikle teşekkürler makale için,peki bu seçtiğimiz nesnelerin hepsini silmek istersek nasıl ...

devamı için tıkla

Tüm Yorumlar »

Tags-Etiketler

Bu kısımda sitemizde etiketlenmiş makaleleri toplu olarak bulabilirsiniz...


 [ nesne ] /  Makaleler-Article(s)


nesne ile ilgili toplam 2 makale bulundu !
(A total of 2 article(s) about nesne was(were) found in all of articles!)


Article

CheckedListBox ile Nesne Seçimi


Bu örnekte çalışma anında CheckedListBox oluşturarak; oluşturulan CheckedListBox da checked=true olan itemi messagebox ta göstereceğiz. Aşağıdaki şekli inceleyin. using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; namespace WindowsApplication1 { public partial class Form1 : Form { internal System.Windows.Forms.CheckedListBox clistBox; public Form1() { InitializeComponent(); this.clistBox = new System.Windows.Forms.CheckedListBox(); this.SuspendLayout(); this.clistBox.Location = new System.Drawing.Point(8, 8); this.clistBox.Name = "clistBox"; this.clistBox.Size = new System.Drawing.Size(264, 196); this.clistBox.TabIndex = 2; this.AutoScaleBaseSize = new System.Drawing.Size(5, 14); this.ClientSize = new System.Drawing.Size(280, 218); this.Controls.AddRange(new System.Windows.Forms.Control[] { this.clistBox }); this.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0))); this.Name = "ListBoxObjects"; this.Text = "ListBox Nesne"; this.Load += new System.EventHandler(this.Form1_Load); this.clistBox.DoubleClick += new System.EventHandler(this.lstCustomers_DoubleClick); this.ResumeLayout(false); } private void Form1_Load(object sender, EventArgs e) { clistBox.Items.Clear(); clistBox.Items.Add(new Customer("Bahadır", "Şahin", DateTime.Now)); clistBox.Items.Add(new Customer("Haluk", "Akman", DateTime.Now)); clistBox.Items.Add(new Customer("Fatih", "Koç", DateTime.Now)); } public class Customer { public string Ad; public string Soyad; public DateTime Tarih; public Customer() { } public Customer(string ad, string soyad, DateTime tarih) { this.Ad = ad; this.Soyad = soyad; this.Tarih = tarih; } public override string ToString() { return Ad + " " + Soyad + " " + Tarih; } } private void lstCustomers_DoubleClick(object sender, EventArgs e) { { MessageBox.Show(Convert.ToString(clistBox.SelectedItem)); } } } } // Bir sonraki makalede görüşmek üzere. Bahadır ŞAHİN

Asp Nesneleri


Asp‘de Nesneler Objeler, Özellilleri, Metodları ve Nesne Temelli Programlama Günlük yaşamımızda kullandığımız, dokunabildiğimiz her şey obje olarak adlandırılır
 
                                        Son Makaleler

        Sitede yayınlanan makaleleri Blog sitemizden de takip edebilirsiniz. Sitemizdeki makaleleri RSS olarak takip edebilirsiniz.

Web hosting by Somee.com