在C#中,處理ListBox事件需要使用事件處理方法。對于ListBox控件,最常用的事件是SelectedIndexChanged
,當用戶更改所選列表項時觸發此事件。
下面是一個簡單的示例,演示如何處理ListBox的SelectedIndexChanged
事件:
using System;
using System.Windows.Forms;
public class ListBoxExample : Form
{
private ListBox listBox;
public ListBoxExample()
{
listBox = new ListBox();
listBox.Location = new System.Drawing.Point(10, 10);
listBox.Size = new System.Drawing.Size(200, 100);
listBox.Items.Add("Item 1");
listBox.Items.Add("Item 2");
listBox.Items.Add("Item 3");
listBox.SelectedIndexChanged += ListBox_SelectedIndexChanged;
this.Controls.Add(listBox);
}
private void ListBox_SelectedIndexChanged(object sender, EventArgs e)
{
Console.WriteLine("Selected index changed to: " + listBox.SelectedIndex);
}
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.Run(new ListBoxExample());
}
}
在上面的示例中,我們首先創建了一個ListBox控件,并將其添加到窗體上。然后,我們將ListBox_SelectedIndexChanged
方法添加為ListBox
控件的SelectedIndexChanged
事件的處理程序。當用戶更改所選列表項時,將調用此方法,并在控制臺中輸出所選索引。
您可以根據需要處理其他ListBox事件,例如MouseClick
、KeyDown
等等。要處理這些事件,只需將相應的事件處理方法添加為控件的事件處理程序即可。