如何设置一个程序来更改 C# 中的数量?
我有一个比较具体的问题。我有一个将在程序中选择的项目列表,然后需要将数字的数量分成不同的金额。
这是一个例子: 10 个管道被分成 3 个一组,即 2 + 5 + 3。这 2、5 和 3 被发送到不同的位置,这就是我们需要将它们分开的原因。
我正在使用 C# 并试图想出在基于表单的应用程序中使用的最佳工具。当某些材料可以分为 100 多个不同的位置时,获取数量的最佳方法是什么?
编辑:将在 ui.stackexchange.com 上的另一个问题中询问此问题的第二部分
I have a somewhat specific question. I have a list of items that will be chosen in the program and then need to separate the quantities of the number into different amounts.
Here is an example:
10 pipes get separated into a set of 3 which are 2 + 5 + 3. These 2, 5, and 3 are sent to different locations, which is why we need to separate them.
I am using C# and trying to think of the best tool to use in a Form based application. What would be the best way to get the quantities when some materials can be separated into over 100 different locations?
Edit: will ask the second part of this question in another question on ui.stackexchange.com
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
为什么不使用数字微调器而不是滑块呢?
Rather than a slider, why not use a numerical spinner?
既然您有最小和最大数量,为什么不使用滑块呢?然后用户可以选择将材料分离到多少个位置。
使用动态滑块可以防止或至少大大减少用户输入错误。
Since you have a minimum and maximum quantity why don't you use a slider? Then the user can choose how many locations to separate the materials into.
Using a dinamic slider would prevent user input errors or at least drastically decrease them.