• 大小: 0.23M
    文件类型: .7z
    金币: 1
    下载: 0 次
    发布日期: 2020-12-14
  • 语言: C#
  • 标签: 二维码  

资源简介

运行环境:Windows XP、Win7/win8/win10


本程序基于.net4.0开发,使用前必须安装.NET Framework 4.0 
DotNetBarcode.dll和二维码生成器.exe文件必须在同一目录下才可以正常使用。


提示:转换的文本信息字符越多,对手机摄像头分辨率要求越高。
http://www.microsoft.com/downloads/zh-cn/details.aspx?FamilyID=0A391ABD-25C1-4FC0-919F-B21F31AB88B7


资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace QRCode
{
    public partial class Form1 : Form
    {
        DotNetBarcode bc = new DotNetBarcode();
        Image printImage;
        public Form1()
        {
            InitializeComponent();
        }

        private void btnCreate_Click(object sender EventArgs e)
        {
            this.ptQRCode.Refresh();
        }

        private void Form1_Load(object sender EventArgs e)
        {
            bc.Type = DotNetBarcode.Types.QRCode;
            bc.PrintCheckDigitChar = true;
        }

        private void ptQRCode_Paint(object sender PaintEventArgs e)
 

评论

共有 条评论