中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

ListBox 控件事件處理技巧

發布時間:2024-08-08 11:36:05 來源:億速云 閱讀:89 作者:小樊 欄目:編程語言
  1. 選擇項改變事件:

當用戶選擇不同的項時,ListBox 控件會觸發 SelectedIndexChanged 事件。可以在這個事件處理程序中獲取用戶選擇的項,并進行相應的操作。

private void listBox1_SelectedIndexChanged(object sender, EventArgs e)
{
    if (listBox1.SelectedIndex != -1)
    {
        MessageBox.Show("You selected: " + listBox1.SelectedItem.ToString());
    }
}
  1. 雙擊項事件:

如果希望用戶雙擊某一項時觸發事件,可以使用 MouseDoubleClick 事件。

private void listBox1_MouseDoubleClick(object sender, MouseEventArgs e)
{
    int index = listBox1.IndexFromPoint(e.Location);
    if (index != ListBox.NoMatches)
    {
        MessageBox.Show("You double-clicked: " + listBox1.Items[index].ToString());
    }
}
  1. 拖拽項事件:

如果想讓用戶可以拖拽 ListBox 中的項,可以使用 DragDrop 事件和 DragEnter 事件。

private void listBox1_MouseDown(object sender, MouseEventArgs e)
{
    if (listBox1.SelectedItem != null)
    {
        listBox1.DoDragDrop(listBox1.SelectedItem, DragDropEffects.Move);
    }
}

private void listBox1_DragEnter(object sender, DragEventArgs e)
{
    if (e.Data.GetDataPresent(DataFormats.Text) && e.AllowedEffect == DragDropEffects.Move)
    {
        e.Effect = DragDropEffects.Move;
    }
    else
    {
        e.Effect = DragDropEffects.None;
    }
}

private void listBox1_DragDrop(object sender, DragEventArgs e)
{
    int index = listBox1.IndexFromPoint(listBox1.PointToClient(new Point(e.X, e.Y)));
    if (index != ListBox.NoMatches)
    {
        object data = e.Data.GetData(DataFormats.Text);
        listBox1.Items.Remove(data);
        listBox1.Items.Insert(index, data);
    }
}

這些是處理 ListBox 控件事件的一些常見技巧,可以根據實際需求進行相應的調整和擴展。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

岐山县| 遵义县| 马边| 扎赉特旗| 德庆县| 芮城县| 贡觉县| 双流县| 安阳县| 漾濞| 日照市| 苍南县| 禄劝| 禹城市| 土默特左旗| 博罗县| 新巴尔虎左旗| 海原县| 眉山市| 板桥市| 泰兴市| 普兰县| 黑龙江省| 江陵县| 甘谷县| 赤峰市| 巴彦县| 宁海县| 宁德市| 南城县| 遂昌县| 敦化市| 长垣县| 鲜城| 红安县| 呼和浩特市| 寻甸| 黔江区| 辽阳市| 米林县| 博湖县|