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 方法添加项与值。逗号前是显示的内容,逗号后面是设定的值
Posted 张三道
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了DropList for 循环添加绑定的项与值相关的知识,希望对你有一定的参考价值。
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 方法添加项与值。逗号前是显示的内容,逗号后面是设定的值
以上是关于DropList for 循环添加绑定的项与值的主要内容,如果未能解决你的问题,请参考以下文章