如何使用 C# 在 Windows 窗体中生成随机数和条形码?
我正在使用 C# 创建 Windows 应用程序。这里我有 6 个数字,
Batch Key:abc123
product Key:xyz456
Order key:mno789
batch Number:12345
product Number:45678
order key:97354
这里我想使用这 6 个数字生成随机数,然后单击一个按钮,我想为该随机数生成条形码。
I am creating Windows application using C#. Here i have 6 numbers
Batch Key:abc123
product Key:xyz456
Order key:mno789
batch Number:12345
product Number:45678
order key:97354
Here i want to generate random number using these 6 numbers and In a single button click i want generate Barcode for that random Number .
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
条形码只是字体,您需要下载条形码字体并将其合并到您的应用程序中。
看:
http://www.dafont.com/barcode-font.font
生成0 到 100 之间的随机数
Barcodes are simply fonts, you will need to download and incorporate a barcode font into your application.
See:
http://www.dafont.com/barcode-font.font
Generate a random number between 0 and 100
首先,您应该选择要使用的条形码格式(http://en.wikipedia.org/wiki/Barcode #Linear_barcodes)。一旦您知道了这一点,您就可以使用诸如 条形码图像生成库 之类的东西来生成您的条形码图像简单。该库可以处理许多不同的条形码规范。
First you should choose which barcode format to use (http://en.wikipedia.org/wiki/Barcode#Linear_barcodes). Once you know this you can use something like the Barcode Image Generation Library to generate your barcode image simply. This library can handle many different barcode specifications.
您可能想尝试使用 Barcode.dll 进行条形码渲染:
http://www.lesnikowski.com/barcode/
它包括 WinForms 控件 - 只需拖动即可降低。
请注意,这是我开发的商业产品。
You may want to try Barcode.dll for barcode rendering:
http://www.lesnikowski.com/barcode/
It includes WinForms control - just drag & drop.
Please note that this is a commercial product I developed.