码迷,mamicode.com
首页 > Windows程序 > 详细

手动添加winform的combobox和listbox名称和值

时间:2017-09-21 19:39:03      阅读:221      评论:0      收藏:0      [点我收藏+]

标签:lis   listbox   err   win   obj   com   ide   ring   object   

先定义一个ListItem类,工程内其他窗体都可以用的。 
public class ListItem : Object
    {
        public string Text { get; set; }
        public string Value { get; set; }
        public ListItem(string text, string value)
        {
            this.Text = text;
            this.Value = value;
        }
        public override string ToString()
        {
            return this.Text;
        }
    }
=========================================================
使用时:
ListItem li=new ListItem("名称","键值");
之后就可以把li添加到combobox和listbox控件
combobox1.items.add(li);
微软越来越来懒了,像这种常用的东西都不提供了,还要自己写。哎

手动添加winform的combobox和listbox名称和值

标签:lis   listbox   err   win   obj   com   ide   ring   object   

原文地址:http://www.cnblogs.com/weipt/p/7569932.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!