for (int i = 0; i < _RecordList.Length; i++)
{
this.Texx_XueXiao.Items.Add(new ListItem(_RecordList[i]["J_Name"].ToString() , _RecordList[i]["J_KaoDianDaiMa"].ToString()));
}
使用 new listitem 方法添加项与值。逗号前是显示的内容,逗号后面是设定的值
标签:tostring 绑定 设定 ring post ems list and 逗号
for (int i = 0; i < _RecordList.Length; i++)
{
this.Texx_XueXiao.Items.Add(new ListItem(_RecordList[i]["J_Name"].ToString() , _RecordList[i]["J_KaoDianDaiMa"].ToString()));
}
使用 new listitem 方法添加项与值。逗号前是显示的内容,逗号后面是设定的值
标签:tostring 绑定 设定 ring post ems list and 逗号
原文地址:http://www.cnblogs.com/zgjin/p/8026805.html