• 大小: 0.42M
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2020-12-26
  • 语言: C#
  • 标签: 二维码  工具  

资源简介

一个二维码生成工具

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using ZXing;
using ZXing.Common;
using ZXing.QrCode.Internal;

namespace QRCode
{
    public partial class FrmQR : Form
    {
        public FrmQR()
        {
            InitializeComponent();
        }

        private void btn_Start_Click(object sender EventArgs e)
        {
            string qRInfo = txt_QRInfo.Text.Trim();
            if(qRInfo==““)
            {
                string errorInfo = “输入内容空,不能生成二维码!“;
                MessageBox.Show(errorInfo “this“);
                //Bitmap bmp = new Bitmap(200 200);
       

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2017-10-09 21:55  QRCode\
     目录           0  2017-10-09 22:29  QRCode\QRCode\
     文件         187  2017-10-09 21:55  QRCode\QRCode\App.config
     文件        4375  2017-10-09 22:29  QRCode\QRCode\FrmQR.Designer.cs
     文件        1975  2017-10-09 22:29  QRCode\QRCode\FrmQR.cs
     文件        8229  2017-10-09 22:29  QRCode\QRCode\FrmQR.resx
     文件         518  2017-10-09 21:59  QRCode\QRCode\Program.cs
     目录           0  2017-10-09 21:55  QRCode\QRCode\Properties\
     文件        1336  2017-10-09 21:55  QRCode\QRCode\Properties\AssemblyInfo.cs
     文件        2864  2017-10-09 21:55  QRCode\QRCode\Properties\Resources.Designer.cs
     文件        5612  2017-10-09 21:55  QRCode\QRCode\Properties\Resources.resx
     文件        1093  2017-10-09 21:55  QRCode\QRCode\Properties\Settings.Designer.cs
     文件         249  2017-10-09 21:55  QRCode\QRCode\Properties\Settings.settings
     文件        3883  2017-10-09 22:11  QRCode\QRCode\QRCode.csproj
     目录           0  2017-10-09 21:59  QRCode\QRCode\bin\
     目录           0  2017-10-09 22:11  QRCode\QRCode\bin\Debug\
     文件       12288  2017-10-09 22:29  QRCode\QRCode\bin\Debug\QRCode.exe
     文件         187  2017-10-09 21:55  QRCode\QRCode\bin\Debug\QRCode.exe.config
     文件       24064  2017-10-09 22:29  QRCode\QRCode\bin\Debug\QRCode.pdb
     文件       24224  2017-10-09 22:29  QRCode\QRCode\bin\Debug\QRCode.vshost.exe
     文件         187  2017-10-09 21:55  QRCode\QRCode\bin\Debug\QRCode.vshost.exe.config
     文件      450560  2017-08-12 03:47  QRCode\QRCode\bin\Debug\zxing.dll
     目录           0  2017-10-09 22:42  QRCode\QRCode\bin\Release\
     目录           0  2017-10-09 21:55  QRCode\QRCode\obj\
     目录           0  2017-10-09 22:29  QRCode\QRCode\obj\Debug\
     文件         865  2017-10-09 21:55  QRCode\QRCode\obj\Debug\DesignTimeResolveAssemblyReferences.cache
     文件        6918  2017-10-09 22:00  QRCode\QRCode\obj\Debug\DesignTimeResolveAssemblyReferencesInput.cache
     文件        1972  2017-10-09 22:29  QRCode\QRCode\obj\Debug\QRCode.FrmQR.resources
     文件         180  2017-10-09 22:11  QRCode\QRCode\obj\Debug\QRCode.Properties.Resources.resources
     文件         524  2017-10-09 22:29  QRCode\QRCode\obj\Debug\QRCode.csproj.FileListAbsolute.txt
     文件         977  2017-10-09 22:29  QRCode\QRCode\obj\Debug\QRCode.csproj.GenerateResource.Cache
............此处省略10个文件信息

评论

共有 条评论