c#(winform)中ComboBox添加Key/Value項、擷取選中項、根據Key

來源:互聯網
上載者:User

標籤:winform   style   blog   color   使用   strong   

 

WinForm下的ComboBox預設是以多行文本來設定顯示列表的, 這通常不符合大家日常的應用, 

因為大家日常應用通常是鍵/值對的形式去綁定它的.

參考了一些網上的例子,最終寫了一個輔助類用於方便對ComboBox的操作:

用下面這個類的執行個體作為ComboBox的添加項:

 

using System;using System.Collections.Generic;using System.Text;using System.Windows.Forms;namespace tp7309.Winform{    public class ListItem    {        public string Key { get; set; }        public string Value { get; set; }        public ListItem(string strKey, string strValue)        {            this.Key = strKey;            this.Value = strValue;        }        public override string ToString()        {            return this.Key;        }        /// <summary>        /// 根據ListItem中的Value找到特定的ListItem(僅在ComboBox的Item都為ListItem時有效)        /// </summary>        /// <param name="cmb">要尋找的ComboBox</param>        /// <param name="strValue">要尋找ListItem的Value</param>        /// <returns>返回傳入的ComboBox中合格第一個ListItem,如果沒有找到則返回null.</returns>        public static ListItem FindByValue(ComboBox cmb, string strValue)        {            foreach (ListItem li in cmb.Items)            {                if (li.Value == strValue)                {                    return li;                }            }            return null;        }        /// <summary>        /// 根據ListItem中的Key找到特定的ListItem(僅在ComboBox的Item都為ListItem時有效)        /// </summary>        /// <param name="cmb">要尋找的ComboBox</param>        /// <param name="strValue">要尋找ListItem的Key</param>        /// <returns>返回傳入的ComboBox中合格第一個ListItem,如果沒有找到則返回null.</returns>        public static ListItem FindByText(ComboBox cmb, string strText)        {            foreach (ListItem li in cmb.Items)            {                if (li.Value == strText)                {                    return li;                }            }            return null;        }    }}

 

 

使用前引入命名空間:tp7309.Winform

  添加項:  

cmb1.Items.Add(new ListItem("key1", "value1"));
cmb1.Items.Add(new ListItem("key2", "value2"));

擷取選中項:

ListItem li = (ListItem)cmb1.SelectedItem;
ListItem li1 = ListItem.FindByValue(cmb1, "value1");   //根據Key得到選中項
ListItem li2 = ListItem.FindByText(cmb1, "key1");      //根據Value得到選中項
string strKey = li.Key;   //得到選中項Key
string strValue = li.Value;   //得到選中項Value

設定選中項:

cmb1.SelectedIndex = 0;    //根據索引修改選中項
cmb1.SelectedItem = ListItem.FindByValue(cmb1, "value1");   //根據Key得到選中項
cmb1.SelectedItem = ListItem.FindByText(cmb1, "key1");      //根據Value得到選中項

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.