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

c# ComboBox特殊属性

时间:2014-11-27 00:11:12      阅读:240      评论:0      收藏:0      [点我收藏+]

标签:style   sp   strong   on   bs   ad   as   new   nbsp   

           c#   ComboBox特殊属性

comboBox1.ValueMember = "Id";  设置值  不显示的
comboBox1.DisplayMember = "Name";  设置name  显示的

Item item=new Item();

item.Id=1;

item.Name="张三";

 comboBox1.Items.Add(item);

 

public class Item

{

private string Id{get;set}

private string Name{get;set}

}

 

c# ComboBox特殊属性

标签:style   sp   strong   on   bs   ad   as   new   nbsp   

原文地址:http://www.cnblogs.com/zlp520/p/4125393.html

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