如何使用 C# 在 Windows 窗体中生成随机数和条形码?

发布于 2024-11-18 14:13:48 字数 228 浏览 3 评论 0原文

我正在使用 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 技术交流群。

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

发布评论

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

评论(3

铃予 2024-11-25 14:13:48

条形码只是字体,您需要下载条形码字体并将其合并到您的应用程序中。

看:
http://www.dafont.com/barcode-font.font

生成0 到 100 之间的随机数

Random random = new Random();
int randomNumber = random.Next(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

Random random = new Random();
int randomNumber = random.Next(0, 100);
疑心病 2024-11-25 14:13:48

首先,您应该选择要使用的条形码格式(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.

等往事风中吹 2024-11-25 14:13:48

您可能想尝试使用 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.

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