Bu örnekte C# Windows Form’ da ListBox Elemanlarının seçime bağlı olarak artan ya da azalan şekilde sıralanmasını sağlayacağız.
Örnek için Form içine bir adet ListBox, 2 RadioButton ve bir Button ekleyin.
Projeye ait ekran çıktısı ve C# Kodları aşağıdaki gibi olacaktır.
C# Kodları:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 |
using System; using System.Collections; 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 sort_listBox1 { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void Form1_Load(object sender, EventArgs e) { this.Text = "tasarimkodlama.com"; this.BackColor = Color.BlueViolet; radioButton1.Checked = true; listBox1.Items.Add("C#"); listBox1.Items.Add("Java"); listBox1.Items.Add("C++"); listBox1.Items.Add("Python"); listBox1.Items.Add("Pascal"); listBox1.Items.Add("Delphi"); listBox1.Items.Add("Visual Basic"); } private void button1_Click(object sender, EventArgs e) { if(radioButton1.Checked) { ArrayList list = new ArrayList(); foreach (object o in listBox1.Items) { list.Add(o); } list.Sort(); listBox1.Items.Clear(); foreach (object o in list) { listBox1.Items.Add(o); } } else { ArrayList list = new ArrayList(); foreach (object o in listBox1.Items) { list.Add(o); } list.Sort(); list.Reverse(); listBox1.Items.Clear(); foreach (object o in list) { listBox1.Items.Add(o); } } } } } |
Yorum Yap