亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

C#Winfom中ListBox怎么用

發布時間:2021-09-28 10:22:10 來源:億速云 閱讀:176 作者:小新 欄目:編程語言

這篇文章主要介紹了C#Winfom中ListBox怎么用,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

1、如何添加listBox的值

this.listBox1.Items.Add("張曉東");

2、如何判斷listBox集合是否添加過

//檢查添加值是否添加過if(this.listBox1.items.Contains("張曉東")){  MessageBox.show("集合成員已添加過!");  }else{   //執行添加集合成員}

3、如何獲取listBox選中的值

//判斷所有選中項集合大于0if(this.listBox1.SelectedItems.Count > 0){   //獲取選中的值   this.listBox1.SelectedItem.ToString(); }else{  MessageBox.Show("未選中listbox集合的值"); }

4、如何移除listBox中存在的值

//移除listBox集合的項this.listBox1.Items.Remove("張曉東");

5、綜合使用例子

簡單實現人員從部門1轉移到部門2或部門2轉移到部門1

完整源碼

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 WindowsForms{  public partial class Form3 : Form  {    public Form3()    {      InitializeComponent();    }    /// <summary>    /// 添加人員到采購部門    /// </summary>    /// <param name="sender"></param>    /// <param name="e"></param>    private void btnInsert_Click(object sender, EventArgs e)    {      //獲取添加人的值      string peopleText = this.txtPeople.Text.Trim().ToString();      //獲取listbox1的對象      ListBox list1 = this.listBox1;      //判斷人員是否已經添加過      if (!list1.Items.Contains(peopleText))      {        list1.Items.Add(peopleText);      }      else {        MessageBox.Show("該人員已經添加過,無法重復添加!");      }    }    /// <summary>    /// 將采購人員轉移到銷售部門    /// </summary>    /// <param name="sender"></param>    /// <param name="e"></param>    private void btnRightMove_Click(object sender, EventArgs e)    {      //獲取listbox1的所有選中的項      if (this.listBox1.SelectedItems.Count > 0)      {        string checkPeople = this.listBox1.SelectedItem.ToString();        //判斷是否添加到listbox2        if (!this.listBox2.Items.Contains(checkPeople)) {          //添加人員到listbox2中          this.listBox2.Items.Add(checkPeople);          //移除listbox1中          this.listBox1.Items.Remove(checkPeople);        }        else        {          MessageBox.Show("該人員已經轉移過,無法重復轉移!");        }      }      else {        MessageBox.Show("未選中采購人員,無法轉移銷售部門!");      }    }    /// <summary>    /// 將銷售人員轉移到采購部門    /// </summary>    /// <param name="sender"></param>    /// <param name="e"></param>    private void btnLeftMove_Click(object sender, EventArgs e)    {      //獲取listbox2的所有選中的項      if (this.listBox2.SelectedItems.Count > 0)      {        string checkPeople = this.listBox2.SelectedItem.ToString();        //判斷是否添加到listbox1        if (!this.listBox1.Items.Contains(checkPeople))        {          //添加人員到listbox1中          this.listBox1.Items.Add(checkPeople);          //移除listbox1中          this.listBox2.Items.Remove(checkPeople);        }        else        {          MessageBox.Show("該人員已經轉移過,無法重復轉移!");        }      }      else      {        MessageBox.Show("未選中銷售人員,無法轉移到采購部門!");      }    }  }}

感謝你能夠認真閱讀完這篇文章,希望小編分享的“C#Winfom中ListBox怎么用”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,更多相關知識等著你來學習!

向AI問一下細節

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

AI

韩城市| 台湾省| 长寿区| 始兴县| 左云县| 呈贡县| 邵阳县| 西林县| 绥棱县| 游戏| 神农架林区| 宜君县| 仁怀市| 香河县| 雷波县| 昂仁县| 翼城县| 绍兴县| 新乡县| 镇康县| 玛沁县| 山西省| 肃宁县| 肇州县| 大石桥市| 博湖县| 茶陵县| 家居| 综艺| 金川县| 永善县| 习水县| 保山市| 沾化县| 本溪市| 阿勒泰市| 普兰店市| 财经| 中方县| 磴口县| 万山特区|