Microsoft Visual C# 组合框/列表框
是否可以将我的comboBox、numericUpDown 和ListBox 连接在一起?
我想让 numericUpDown 成为您可以在列表框中显示的选择的限制。例如:
- 如果 numericUpDown == 2 那么,
- comboBox == 5 个选择。您可以选择 2。您的第一个选择不应包含在组合框的第二次浏览中。那么,
- listbox == 2。(列表框应该只包含数据。取决于 numericUpDown 的值)因此,如果用户在组合框中再次选择,列表框中的数据不会受到影响。
我该如何实现这个?
Is it possible to have my comboBox, numericUpDown, and ListBox connected together?
I want to make the numericUpDown to be the limit of the choices that you could made taht will be displayed in the listbox. For example:
- If numericUpDown == 2 then,
- comboBox == 5 choices. You Can Choose 2. Your first choice shouldn't be included in your second lookthrough of the combobox. then,
- listbox == 2. (The listbox should only contain data. Depending on the value of the numericUpDown) So if the user choose again in the combobox the datas in the list box wouldn't be affected.
How might I implement this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
C# 拥有大部分有用的控件,但有时您需要的控件并不存在。
您始终可以制作自己的控件,或者只需添加一些编码即可获得您想要的东西。
没有什么是不可能的。
这是制作自己的控件然后在程序中使用它的简单方法。
http://www.codeproject.com/KB/miscctrl/first_control.aspx
C# has most of the useful controls but sometimes what you need is not there.
You can always make your own controls or just add a little coding to get what you want.
Nothing Is Impossible.
Here is a simple way to make your own Control and then use it in your program.
http://www.codeproject.com/KB/miscctrl/first_control.aspx