Listbox Örneği

Listbox Örneği için tıklayınız.

Sayıları Listbox’lara ayıran örnek .

Ekran Alıntısı

 

 

 

 

 

 

 

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 WindowsFormsApplication22
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}

private void button1_Click(object sender, EventArgs e)
{
for(int i=1;i<=30;i++)
{
if (i % 3 == 1)
listBox1.Items.Add(i);
if (i % 2 == 0)
listBox2.Items.Add(i);
if (i % 3 == 0)
listBox3.Items.Add(i);

}
}
}
}

admin