本文介绍了在windows窗体中有类似listitem类的东西吗?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 实际上,我在网页表单中使用下拉列表进行了此操作。 以下是代码: ListItem l1 = new ListItem( - Select - ,0); ddlUName.Items.Add(l1); ddlUName.SelectedValue =0; 现在我正在尝试使用组合框在Windows窗体中执行相同的操作,但这里的ListItem类是不在那里。那么有人可以帮助我吗?如何在Windows窗体中使用上面的代码? 谢谢。解决方案 Actually, I did this in web forms with dropdownlist.Here is the code:ListItem l1 = new ListItem("-Select-","0"); ddlUName.Items.Add(l1); ddlUName.SelectedValue = "0";Now I''m trying to do the same thing in Windows forms using combobox, but here the ListItem class is not there. So can anybody help me? How can I use the above code in windows forms?Thank you. 解决方案 这篇关于在windows窗体中有类似listitem类的东西吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!
09-13 10:38