Microsoft Visual C# 组合框/列表框

发布于 2024-12-03 10:37:10 字数 317 浏览 2 评论 0原文

是否可以将我的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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

总攻大人 2024-12-10 10:37:10

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文