How to Generate QR Code in .NET WinForms Library
QR Code (a.k.a. Denso Barcode, QRCode, and Quick Response Code) is capable to store a large block of data information, and could be read immediately. QR Code could be used to encode URL and could be scanned by a qualified phone camera.
.NET Winforms QR Code Generator is one part of BizCode Generator for Winforms, which consists of series of .NET barcode generating component to optimize the barcode generation and add advanced barcode printing features to the .NET projects.
QR Code Barcode .NET Winforms DLL is easy to be used in C#, managed C++, VB .NET for .NET Framework. It is simple to generate and create QR Code barcode in .NET applications and console applications. This generator also provides strong named assemblies for .NET 2.0 and later version.
This document provides a comprehensive user manual on QR Code barcode generation in .NET Winforms projects. If you want know more, please go to
user manual for QR Code data encoding,
user manual for QR Code image setting, and
user manual for QR Code size setting.
.NET Winforms QR Code Generator Features
Encodable Characters | Support to encode: - Numeric characters - Alphanumeric data - Byte characters - Kanji characters |
GS1 System | Support to encode GS1 compatible QR Code barcodes in .NET Winforms |
Programming Language | Completely run in Visual C#, VB.NET, Managed C++ and Borland Delphi for .NET |
User Manual | Provides complete sample code and user manual over every aspect of QR Code generation in .NET Winforms |
Image & Size | Multiple barcode setting options to customize QR Code barcode image and size, including module width, image width, rotation, resolution etc. |
Safe & Secure | Provide 100% managed code product created in Visual C# .NET with strong name signatures and signed DLLs |
.NET Winforms QR Code Barcode Generator Requirements
Windows OS - Microsoft Windows 7 - Windows Server 2008 - Windows Vista - Windows Server 2003 - Windows XP | Development Environments - .NET 2.0/3.0/4.0 - C#, VB.NET, Managed C++, Borland Delphi    for.NET - Visual Studio 2005/2008/2010 - .NET Windows Forms Application - .NET Class and Console Applications |
Install .NET Winforms QR Code Barcode Generator
- Download BizCode Generator for Winforms and unzip;
- Add reference: Add "BusinessRefinery.Barcode.Win.dll" to your .NET Winforms project reference;
- Add to toolbox: To add Barcode Control to your .NET Winforms Web Forms toolbox.
How to Drag & Drop Barcode Control into .NET Winforms projects?
- Install .NET Winforms Barcode Control;
- Add .NET Winforms Barcode Control onto your .NET Visual Studio Toolbox;
- Drag and drop the WinQRCode control into the Forms;
- You will see a barcode image generated; more QR Code barcode setting please see below.
How to Generate QR Code with C#, VB.NET Class in .NET Winforms?
Copy those following sample code to your .NET Winforms projects:
using BusinessRefinery.Barcode;
QRCode barcode = new QRCode();
barcode.Code = "QR Code";
barcode.Resolution = 104;
barcode.Rotate = Rotate.Rotate180;
barcode.Format = ImageFormat.Gif;
barcode.drawBarcode2ImageFile("c:/qr-code-csharp.gif");
Dim barcode As BusinessRefinery.Barcode.QRCode =
New BusinessRefinery.Barcode.QRCode()
barcode.Code = "QR Code"
barcode.Resolution = 104
barcode.Rotate = BusinessRefinery.Barcode.Rotate.Rotate270
barcode.Format = System.Drawing.Imaging.ImageFormat.Gif
barcode.drawBarcode2ImageFile("c:/qr-code-vb-net.gif")